Here is a Powershell Script to that deploys a WSP and activates a SharePoint feature $solutionName="solutionname.wsp" $featureName="featurename" $SolutionPath="C:\wsp\"+$solutionName if($args[0] -eq 'DEV') { $webAppName="http://url" } elseif ($args[0] -eq 'QA') { $webAppName="http://url" } elseif ($args[0] -eq 'PROD') { $webAppName="http://url" } else { Write-Host "$(Get-Date -Format o) Environment not specified - please pass ...

Read More