Deploy
Segue alguns comandos do Power Shell.Add-PSSnapin
Ao abrir o PowerShell não e não funcionar os comandos para o sharepoint usar esse comando.
Add-PSSnapin "Microsoft.Sharepoint.PowerShell"
Add-SPSolution
Adicionar uma solução(*.wsp).
Add-SPSolution “C:\caminhodoarquivo\arquivo.wsp”
Install-SPSolution
Instalar uma solução já adicionada.
Install-SPSolution -identity Arquivo.wsp -WebApplication http://urldosite -GACDeployment
Uninstall-SPSolution
Desisntalar uma solução.
uninstall-SPSolution -identity nomeDoArquivo.wsp -WebApplication http://urldosite
Remove-SPSolution
Remover a solução.
Remove-SPSolution –Identity nomeDoArquivo.wsp
Update-SPSolution
Atualizar uma solução já existente.
Update-SPSolution –Identity NomeDoArquivo.wsp –LiteralPath “C:\caminhodoarquivo\arquivo.wsp” –GACDeployment
Enable-SPFeature
Habilitar uma feature de um site.
Enable-spfeature -identity NomeDaFeature -url http://urldosite
Disable-SPFeature
Desativar uma feature de um site.
Disable-SPFeature –Identity NomeDaFeature –url http://UrlDosite
Outros Posts: Power Shell - comandos I; Power Shell - Comandos II