Deploying Multiple Solutions
There are 1 entries for the tag
Deploying Multiple Solutions
I was playing around with some scripts today while I was working on an upgrade. I didn’t want to individually write out the names of files in a batch file and I wanted to create a quick Powershell Script. If you are using SharePoint 2010 you can use these lines of code in the Powershell Manager to deploy only .wsp files to your SharePoint 2010 Web Applications: $dir = [directory] $list = Get-ChildItem $dir | where {$_.extension -eq ".wsp"} foreach($my_file in Get-ChildItem $list){Add-SPSolution -LiteralPath...