Category Archives: Powershell

How to Uninstall the WSP solution using the Powershell?

  Start-SPAssignment -Global write-host “Deleting Solution………….” $solution = Get-SPSolution | where-object {$_.Name -eq $WSPName} # check to see if solution package has been installed if ($solution -ne $null) { # check to see if solution package is currently deployed if($solution.Deployed … Continue reading

Posted in Powershell | Tagged , | 1 Comment