Sitecore PowerShell:删除项不删除,如何解决?

时间:2019-02-19 16:29:36

标签: powershell sitecore sitecore8

我有一个简单的Sitecore8 / PowerShell脚本,其中删除了图像子项并发布了父项:

$child1 = Get-Item $child1Path
Remove-Item $child1 -Force -Permanently 
Publish-Item -Item $parent1 -Recurse -PublishMode SingleItem -Language "en*"

运行时无删除且无错误。

我如何找出为什么不删除?

1 个答案:

答案 0 :(得分:1)

您可以将Remove-Item与-Path参数一起使用。或使用

  

$ child1 |删除项

很明显,您的脚本不会引发错误,但是删除无法那样工作。 请参阅文档https://doc.sitecorepowershell.com/working-with-items