如何卸载 sharepoint 2007 中的功能?

发布于 2024-09-29 22:00:17 字数 96 浏览 0 评论 0原文

我需要从 SharePoint 中完全删除某个功能及其所有程序集、文件夹和所有内容。 我发现我可以通过SharePoint管理外壳来做到这一点,但我不知道如何找到、打开或下载它!

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江湖正好 2024-10-06 22:00:17

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

对于通过 Powershell 卸载:

对于通过 stsadm 卸载:

  • < a href="http://technet.microsoft.com/en-us/library/cc262976%28office.12%29.aspx" rel="nofollow">卸载功能:Stsadm 操作 (Office SharePoint Server)

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

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

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

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:

For uninstalling via stsadm:

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文