通过PowerShell卸载全部的SharePoint 2010 解决方式

Posted claireyuancy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过PowerShell卸载全部的SharePoint 2010 解决方式相关的知识,希望对你有一定的参考价值。

通过PowerShell卸载全部的SharePoint 2010 解决方式

        为了演示。我常常须要拆毁再重建SharePoint 2010 环境。
        我常常须要用到的操作就是移除demo开发环境中全部安装的SharePoint 解决方式。
        这里是PowerShell脚本。它节省了我大量的时间。我希望也能给你带来帮助。

脚本:
function Uninstall-AllSPSolutions {
    param (
        [switch] $Local,
        [switch] $Confirm
    ) 

  Start-SPAssignment -Global;
  foreach($solution in (Get-SPSolution | Where-Object { $_.Deployed })) {
    write-host "Uninstalling Solution " $solution.Name;
    if($solution.DeployedWebApplications.Count -gt 0) {
      Uninstall-SPSolution $solution –AllWebApplications -Local:$Local -Confirm:$Confirm;
    } else {
      Uninstall-SPSolution $solution -Local:$Local -Confirm:$Confirm;
    }
    do {
      Start-Sleep 5;
      $solution = Get-SPSolution $solution;
    } while($solution.JobExists -and $solution.Deployed) 
  } 
  Stop-SPAssignment -Global;
}

function Remove-AllSPSolutions {
    param (
        [switch] $Confirm
    ) 
    Get-SPSolution | Where-Object { !$_.Deployed } | Remove-SPSolution -Confirm:$Confirm
}
用法:
        假设你保存脚本到文件,比方说是Remove-AllSPSolutions.ps1,然后在PowerShell调用时,记得要在前面这样写:
.\Remove-AllSPSolutions.ps1
       你能够使用以下命令卸载全部部署的解决方式:
Uninstall-AllSPSolutions -Confirm
        然后移除它们:
Remove-AllSPSolutions -Confirm

以上是关于通过PowerShell卸载全部的SharePoint 2010 解决方式的主要内容,如果未能解决你的问题,请参考以下文章

Powershell:通过 UpgradeCode 卸载应用程序

通过Powershell收回并卸载SharePoint解决方案

Powershell:卸载提示用户输入的软件

PowerShell怎么删除

使用Windows Powershell卸载和安装Win10 原生应用的方法

如何在不卸载powershell的情况下,有效禁用/启用powershel