Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮助我了解如何使用 powershell 和 web 服务删除 SharePoint 2007 /2010 Recyclebin。
我不知道这是否是您想要的,但是您可以使用 powershell 中的这两行来清空 Web 的回收站:
$w = get-spweb http://localhost $w.RecycleBin.DeleteAll()
但是我从来没有将 powershell 和 web 服务结合起来,所以这可能不是你想要的。