如何卸载sharepoint 2007中的功能?

时间:2010-10-28 08:41:23

标签: sharepoint-2007 sharepoint-feature

我需要完全从SharePoint中删除一个功能及其所有程序集,文件夹和所有内容。 我发现我可以通过SharePoint管理shell执行此操作,但我不知道如何查找,打开或下载它!

1 个答案:

答案 0 :(得分:2)

Sharepoint Management Shell附带Sharepoint,它只是一个PowerShell加载项,您可以手动加载。如果您没有Sharepoint Management Shell,也可以使用stsadm.exe

通过Powershell卸载:

通过stsadm卸载:

您可以在开始菜单中找到Sharepoint Management Shell,您可以在Sharepoint安装文件夹中找到stsadm。

有关所有已安装功能的列表,请在PowerShell中运行以下命令:

Get-SPFeature | Sort -Property Scope,DisplayName | FT -GroupBy Scope DisplayName,Id