Sitecore PowerShell:Remove-Item 未删除,如何排除故障?
Sitecore PowerShell : Remove-Item not deleting, How to troubleshoot?
我有一个简单的 Sitecore8/PowerShell 脚本,我在其中删除图像子项并发布父项:
$child1 = Get-Item $child1Path
Remove-Item $child1 -Force -Permanently
Publish-Item -Item $parent1 -Recurse -PublishMode SingleItem -Language "en*"
在 运行.
期间没有删除也没有错误
我如何找出它没有删除的原因?
您可以将 Remove-Item 与 -Path 参数一起使用。或者使用
$child1 | Remove-Item
显然你的脚本不会抛出错误,但删除不是那样工作的。
请参阅文档 https://doc.sitecorepowershell.com/working-with-items
我有一个简单的 Sitecore8/PowerShell 脚本,我在其中删除图像子项并发布父项:
$child1 = Get-Item $child1Path
Remove-Item $child1 -Force -Permanently
Publish-Item -Item $parent1 -Recurse -PublishMode SingleItem -Language "en*"
在 运行.
期间没有删除也没有错误我如何找出它没有删除的原因?
您可以将 Remove-Item 与 -Path 参数一起使用。或者使用
$child1 | Remove-Item
显然你的脚本不会抛出错误,但删除不是那样工作的。 请参阅文档 https://doc.sitecorepowershell.com/working-with-items