I have a WSP that I am trying to install on my development SharePoint server. I used the Management Shell to do this:
Add-SPSolution -LiteralPath c:\temp\mySolution.wsp
and then:
Install-SPSolution -Identity mySolution.wsp -WebApplication http://sp-dev:10000 -GACDeployment
But when I go to Site Settings->Solutions there is nothing present in the Solution Gallery. Is this not where my WSPs get installed?
UPDATE:
I un-selected @Renzo's answer because from what I can tell -WebApplication http://sp-dev:10000 adds it to the web application. Shouldn't I be seeing this in the Site Settings->Solutions area now?
Enum-Deployments? – ScarePoint Apr 18 '11 at 19:07Get-SPSolution | select DisplayName, LastOperationResult:-) – Anders Rask♦ Apr 18 '11 at 21:19