Using PowerShell to deploy SharePoint Solutions (WSP)

The STSADM command line application worked well with previous versions of SharePoint. But the world is progressing and PowerShell will be the new administrative tool for SharePoint. In previous articles, I already showed some amazing powerful scripts that otherwise would require more lines of code. PowerShell offers some great advantages in large farms, as they can be run remotely on target machines, can be signed and therefore be controlled. Building up a repository of scripts or cmdlets to execute common tasks would be worthwhile in the long run.

First off an important thing to note here that this will only work with SharePoint 2010. There are no PowerShell snapins available for 2007, although you could create your own off course. And when run from a SharePoint 2010 Management Shell, the snapins are loaded automatically. But what if you just use the ‘normal’ console? Well, then you would have to register the snapin yourself. Fortunately, MS has already created the PowerShell script that is needed, located at:

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\Config\PowerShell\Registration\SharePoint.ps1.

You could include this script in your scripts to be run first, or just include the command that registers the snapin:

Add-PSSnapin Microsoft.SharePoint.PowerShell

This article covers one of the most basic tasks one would do when administrating SharePoint: Deploy SharePoint solutions (WSP) and enable/disable features.

Working with Solutions

In the ‘old’ days (let us not forget that the stsadm is still there and we have a lot of SharePoint 2007 installations across the globe), the following stsadm command could be used to add a SharePoint solution to SharePoint:

stsadm –o addsolution –filename “D:\Deploy\MySharePointSolution.wsp

We used the following command to deploy the solution once installed to a specific web application:

stsadm –o deploysolution –name MySharePointSolution.wsp –url http://myspwebappp –allowgacdeployment –immediate

If we would upgrade an existing solution, we would use the following:

stsadm –o upgradesolution –name MySharePointSolution.wsp –filename “D:\Deploy\MySharePointSolution.wsp” -immediate

And finally, we used the following commands to retract and delete a specific solution from the web application:

stsadm –o retractsolution –name MySharePointSolution.wsp –url http://myspwebapp –immediate
stsadm –o deletesolution –name MySharePointSolution.wsp

Now, let us see how we could do above operations with PowerShell. For this, we use the following PowerShell commands:

Add-SPSolutionD:\Deploy\MySharePointSolution.wsp
Install-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://myspwebapp –GACDeployment

If you would like to add the solution as sandboxed, you would use the Install-SPUserSolution command instead. To upgrade a solution, we specify which solution is to be updated and with which new solution file:

Update-SPSolution –Identity MySharePointSolution.wsp –LiteralPath “D:\Deploy\MySharePointSolution.wsp” –GacDeployment

To retract and remove a solution, we use the following commands:

Uninstall-SPSolution –Identity MySharePointSolution.wsp –WebApplication http://myspwebapp
Remove-SPSolution–Identity MySharePointSolution.wsp

Working with features

Similarly, commands exist for working with features. The stsadm equivalents:

stsadm –o activatefeature –name MyFeatureName –url http://myspwebapp
stsadm –o deactivatefeature –name MyFeatureName –url http://myspwebapp

Needless to say, there are easy equivalents in PowerShell:

Enable-SPFeature –Identity MyFeatureNameOrGuid –url http://myspwebapp
Disable-SPFeature –Identity MyFeatureNameOrGuid –url http://myspwebapp

As you can see, PowerShell will completely replace stsadm as the administrative command line tool for SharePoint. Better to start using it as the next version of SharePoint will not have a stsadm command line tool I suspect. To conclude, let us take a look at a script that enables a certain feature across all site collections and sites in a farm. As an example, I have taken the SharePoint Server Enterprise Site Features feature with ID 0806d127-06e6-447a-980e-2e90b03101b8.

Add-PSSnapin Microsoft.SharePoint.PowerShell
$WebApplications = Get-SPWebApplication

foreach ($webapp in $WebApplications) {
  $Id = $webapp.Id
  Write-Host “Processing web application $Id …”
  $sites = $webapp.Sites
  foreach ($site in $sites) {
    Write-Host Processing site $site.Id
    $webs = $site.AllWebs
    foreach ($web in $webs) {
      Write-Host Processing web $web.Title
      if ($web.Features[“0806d127-06e6-447a-980e-2e90b03101b8”] -eq $null) {
        Enable-SPFeature -Identity 0806d127-06e6-447a-980e-2e90b03101b8 -url $web.Url -Confirm:$false
      } else {
        Disable-SPFeature -Identity 0806d127-06e6-447a-980e-2e90b03101b8 -url $web.Url -Confirm:$false
      }
    }
  }
}

Please note though that above script will work for small site collections. But for larger object hierarchies, you will need to include proper memory management (SPAssignment) to ensure proper release of memory.

As always, have fun coding.

63 thoughts on “Using PowerShell to deploy SharePoint Solutions (WSP)”

  1. pls help out. i did locate where to edit the wss_custom to change the policy…pls out asap. i will love if you can show the path to the bin directory. thanks.

  2. This assumes that the script is executed on the same same server which has a Sharepoint installation. However how do you tackle this when you want to deploy to a SP Server remotely e.g. from a CI Server?

    Assume that I auto-build my solution on Server 1 and would like to deploy this solution to multiple environments (test, pre-prod, prod). Is it possible to give the URL parameter to the AddSPSolution cmdlet (and other subsequent cmdlets) so that I can deploy this to multiple environments without necessarily copying all the WSP’s and the script to deploy to each individual environment?

    Many thanks for any help here.

    1. SharePoint WSP files can only deployed from a machine that has SharePoint installed. It is however possible to execute PowerShell scritps remotely, that is indicating a server on which the script should run from a central PC. This still requires the deliverables to be present on the server, but the script can be run remotely.

  3. Hi Patrick,

    Can you help me to install, Deploy, Activate, Deactivate, Retract & Remove multiple wsp files by one script.

    Thanks,
    Sree

  4. Pingback: banyan resort
  5. Pingback: scripts, themes
  6. When I try to run this cmdlet, I receive the following errors (only sometimes):

    Disabling feature: SPFeatureDefinition Name=FeatureDefinition/b89234a6-xxxx-xxxx-xxxx-200dd03e1fdd ( XXXStructures_XXXContentTypes , b89234a6-xxxx-xxxx-xxxx-200dd03e1fdd )
    VERBOSE: Leaving BeginProcessing Method of Disable-SPFeature.
    VERBOSE: Performing operation “Disable-SPFeature” on Target “Site Scope
    http://mysite|b89234a6-xxxx-xxxx-xxxx-200dd03e1fdd”.
    Disable-SPFeature : Cannot complete this action.
    Please try again.

    The part of the script that is producing this is…

    foreach ($feature in $features) {
    if ($feature -ne $null) {
    Write-Host “`nDisabling feature: ” $feature “(” $feature.DisplayName “,” $feature.ID “)”
    Disable-SPFeature $feature -url http://mysite -Confirm:$false -Force -verbose
    Start-Sleep -Seconds 10
    }

  7. Unquestionably believe that which you said.
    Your favorite justification seemed to be at the net the easiest factor to bear in mind
    of. I say to you, I certainly get annoyed at the same time as other folks
    think about worries that they plainly do not understand about.
    You controlled to hit the nail upon the top as
    well as outlined out the entire thing without having side-effects , other people can take a signal.
    Will likely be again to get more. Thanks

  8. Very nice post. I just stumbled upon your blog and wanted to say that I have truly enjoyed browsing
    your blog posts. In any case I’ll be subscribing to your rss feed and I hope you write again very soon!

  9. Hi there very nice site!! Guy .. Beautiful ..
    Wonderful .. I’ll bookmark your site and take the feeds also? I am glad to find numerous helpful information right here in the submit, we want work out extra strategies on this regard, thanks for sharing. . . . . .

  10. I have been browsing online greater than 3 hours lately, but I by no means discovered any fascinating article like yours.
    It is beautiful price sufficient for me. In my view, if all site owners
    and bloggers made just right content material as you probably did, the internet will be much more useful than ever before.

  11. Howdy would you mind sharing which blog platform you’re using? I’m planning
    to start my own blog soon but I’m having a tough time choosing between BlogEngine/Wordpress/B2evolution and Drupal. The reason I ask is because your layout seems different then most blogs and I’m
    looking for something completely unique. P.S My apologies for getting off-topic but I had to ask!

  12. Hello this is kind of of off topic but I was wanting to know if blogs use WYSIWYG editors or
    if you have to manually code with HTML. I’m starting
    a blog soon but have no coding know-how so
    I wanted to get advice from someone with experience.
    Any help would be enormously appreciated!

  13. Have you eever considered about including a little bit more
    than just your articles? I mean, what you say is important and all.
    However imagine iff you added some great visuals or video clips too give
    your posts more, “pop”! Your content is excellent but with images and
    videos, this site could definitely be one of the greatest in its niche.
    Awesome blog!

  14. Thanks for the great article…. However I would like to mention that your command

    “stsadm –o deploysolution –name MySharePointSolution.wsp –url http://myspwebappp –allowgacdeployment –immediate”

    will NOT work for a WSP file that you have created from your site – ie. if you create a WSP file of a SITE using the “Save Site as a Template” option from the “SITE SETTINGS” section.

  15. whoah this weblog is grreat i love studying your posts.
    Keep up the grea work! You know, lots of individuals are searching around ffor this information, you can
    help them greatly.

  16. Great blog here! Also your website loads up fast!
    What host are you using? Can I get your affiliate link to yourr host?
    I wish mmy web site loaded up as quickly as yours lol

  17. The cosmetic dentist crowns however will probably be white and
    look more like natural teeth. This could have a negative effect on your
    personal and professional life. If you are considering
    any of the procedures, you should consult with a reputed cosmetic dentist.

  18. I am really loving the theme/design of your website. Do you ever
    run into any web browser compatibility problems?
    A number of my blog audience have complained about my blog not operating correctly in
    Explorer but looks great in Firefox. Do you have any tips to help fix
    this problem?

  19. If attracting visitors to your site is not just a cause of major concern because you already
    buy them regularly, find out the number of of options are becoming your clients.
    I cut it as a result of a handful of paragraphs and upload it to my email list
    manager for sending tomorrow. This essentially lets Google now how relevant and informative your details
    is to the search query.

  20. Good day! This is kind of off topic but I need some advice from an established blog.
    Is it very difficult to set up your own blog?

    I’m not very techincal but I can figure things out pretty quick.

    I’m thinking about setting up my own but I’m not sure where to
    begin. Do you have any points or suggestions?
    Thanks

  21. This is really attention-grabbing, You are an excessively
    skilled blogger. I have joined your feed and look forward
    to in search of more of your fantastic post. Additionally, I’ve
    shared your site in my social networks

  22. Thanks for the marvelous posting! I quite enjoyed reading
    it, you’re a great author.I will ensure that I bookmark your
    blog and will eventually come back someday. I want to encourage
    continue your great writing, have a nice afternoon!

  23. I you don’t have your own marketing website than visit.
    If you want to get it on your i – Phone or Android, you might run into some issues.
    It’s like being one with the world and being one with the trend without forming
    any kind of identity that one can point out to be unique.

Leave a comment