🔧
SharePoint 2013 ファーム ソリューション ファイルを一発で展開する
開発時によく使うけど忘れるので書きました。
ソリューションをアンインストールした直後は削除できないのでループで回すようにしています。
Add-PSSnapin "Microsoft.SharePoint.PowerShell"
$path = "{{file-path}}"
$name = [System.IO.Path]::GetFileName($path)
$solution = Get-SPSolution -Identity $name -ErrorAction SilentryContinue
if ($solution -ne $null) {
if ($solution.Deployed -eq $true) {
Uninstall-SPSolution -Identity $name -Confirm:$false
}
while ($true) {
try {
Remove-SPSolution -Identity $name -Confirm:$false -ErrorAction Stop
break
} catch {
Start-Sleep -Seconds 1
}
}
}
Add-SPSolution -LiteralPath $path
Install-SPSolution -Identity $name -GACDeployment
Discussion