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

Posted

tags:

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

  1. Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction "SilentlyContinue"
  2. $SolutionPackageName = "MySolution.wsp"
  3. $solution = Get-SPSolution | where-object {$_.Name -eq $SolutionPackageName}
  4.  
  5. # check to see if solution package has been installed
  6. if ($solution -ne $null) {
  7. # check to see if solution package is currently deployed
  8. if($solution.Deployed -eq $true){
  9. Uninstall-SPSolution -Identity $SolutionPackageName -Local -Confirm:$false
  10. }
  11. }

以上是关于通过Powershell收回并卸载SharePoint解决方案的主要内容,如果未能解决你的问题,请参考以下文章

Powershell:通过 UpgradeCode 卸载应用程序

检测并卸载防病毒软件

powershell PowerShell安装默认的NTUSER.DAT,修改它并卸载它

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

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

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