Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to write stsadm -deploysolution correctly? sharepoint webpart deploying

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?

like image 392
r.r Avatar asked May 23 '11 12:05

r.r


1 Answers

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
like image 175
Rob Avatar answered Nov 15 '22 06:11

Rob