开发者

How to uninstall a feature in sharepoint 2007?

开发者 https://www.devze.com 2023-01-22 13:33 出处:网络
I need to remove a feature completely from SharePoint with all its assemblies, folders and everything.

I need to remove a feature completely from SharePoint with all its assemblies, folders and everything. I found that I can do开发者_如何学Python this by SharePoint management shell, but I don't know how to find, open or download it!


The Sharepoint Management Shell comes with Sharepoint and is simply a PowerShell Add-In which you could load manually. If you don't have the Sharepoint Management Shell you can also use stsadm.exe.

For uninstalling via Powershell:

  • Installing or Uninstalling Features

For uninstalling via stsadm:

  • Uninstallfeature: Stsadm operation (Office SharePoint Server)

You can find the Sharepoint Management Shell in the start menu, the stsadm you can find in the Sharepoint installation folder.

For a list of all installed features run the following command in PowerShell:

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

精彩评论

暂无评论...
验证码 换一张
取 消