Click here to Skip to main content
Click here to Skip to main content

PowerShell - Wait for Retract / Uninstall before Remove

By , 1 Apr 2013
 
This is a very small tip for SharePoint developers. Basically people hate PowerShell before knowing it. But you will love it once you start using it. Sooooo Comfortable.

So, as a part of PowerShell commands, we have UnInstall-SPSolution command for retracting a SharePoint solution and Remove-SPSolution command to remove the solution from any scope.

When you execute these commands in a sequence in a script (.ps1) file, Usually we end up with an error saying
 Remove-SPSolution : The solution "XXXX.wsp" has been deployed in the farm. Please retract the deployment before removing the solution.You can also use the
-override parameter to forcibly remove the solution, but you will not be able to retract the solution deployment.

So we need to wait until the retraction / uninstallation is completed, to remove solution. But how we can wait in Automated scripts (.ps1) files?

Below is the way to wait . . .

I have three SharePoint solutions deployed to farm and I want a single script file which can uninstall and remove the solutions. Look at below PowerShell script.
add-pssnapin "microsoft.sharepoint.powershell"
Set-ExecutionPolicy unrestricted
echo " "
echo "Uninstalling Project1"
<yellow>$sln = get-spsolution -identity SharepointProject1.wsp </yellow>
uninstall-spsolution -identity SharepointProject1.wsp -confirm:$false
echo "Started solution retraction..." 
<yellow>while($sln.JobExists) { </yellow>
<yellow>echo " > Uninstall in progress..."</yellow>
<yellow>start-sleep -s 10 </yellow>
<yellow>}</yellow>
remove-spsolution -identity SharepointProject1.wsp -confirm:$false
echo "Removed Project1"
echo "  "
echo "Uninstalling Project2"
<yellow>$sln = get-spsolution -identity SharepointProject2.wsp </yellow>
uninstall-spsolution -identity SharepointProject2.wsp -confirm:$false
echo "Started solution retraction..." 
<yellow>while($sln.JobExists) { </yellow>
<yellow>echo " > Uninstall in progress..." </yellow>
<yellow>start-sleep -s 10</yellow>
<yellow>}</yellow> 
remove-spsolution -identity SharepointProject2.wsp -confirm:$false
echo "Removed Project2"
echo "  "
echo "Uninstalling Project3"
<yellow>$sln = get-spsolution -identity SharepointProject3.wsp</yellow>
uninstall-spsolution -identity SharepointProject3.wsp -confirm:$false
echo "Started solution retraction..." 
<yellow>while($sln.JobExists) { </yellow>
<yellow>echo " > Uninstall in progress..." </yellow>
<yellow>start-sleep -s 10 </yellow>
<yellow>}</yellow> 
remove-spsolution -identity SharepointProject3.wsp -confirm:$false
echo "Removed Project3"
Now here is the output:

Task accomplished!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

PratapReddyP
Web Developer
India India
Member
I am an Aspiring Architect, having expertise in Design and Development. Good knowledge on TDD and DDD Approaches. Well versed with Agile methodology. Strong at Sharepoint, C# , Asp.Net, MVC, MVC Razor, WCF, Entity Framework, SQL, BI Tools.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
-- There are no messages in this forum --
Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 1 Apr 2013
Article Copyright 2013 by PratapReddyP
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid