🔧

SharePoint 2013 ファーム ソリューション ファイルを一発で展開する

2022/01/01に公開

開発時によく使うけど忘れるので書きました。
ソリューションをアンインストールした直後は削除できないのでループで回すようにしています。

https://github.com/karamem0/samples/tree/main/sharepoint-script-deploy-farm-solution

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