how to write stsadm -deploysolution correctly? sharepoint webpart deploying

r.r picture r.r · May 23, 2011 · Viewed 21.9k times · Source

I got a help from other Question:

stsadm -o addsolution -filename {WSPFILENAME} stsadm -o deploysolution -name {WSPFILENAME} -url {SITEURL}

my WSP file is here:

C:\H\H\H.wsp

url:

https://test0emeamicrosoftonlinecom-6.sharepoint.emea.microsoftonline.com/

how to write this stsadm command correctly?

Answer

Rob picture Rob · May 23, 2011

I will assume this is for SharePoint 2007. There are two STSADM commands that need to be run (SharePoint 2010 should use Powershell...STSADM is only there for backwards compatibility).

Add the solution:

stsadm -o addsolution -filename C:\H\H\H.wsp

Deploy the solution:

The parameters for deploying your solution package are largely going to depend on what is in the solution and what needs to be deployed.

A simple global deployment may look something like this:

stsadm -o deploysolution -name H.wsp -immediate

For a deployment targeted to a specific web application in your farm and with assemblies being deployed to the GAC it may look something like this:

stsadm -o deploysolution -name H.wsp -url http://mydomain.com -allowgacdeployment -immediate