Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions DSCResources/cChocoPackageInstall/cChocoPackageInstall.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,11 @@ function InstallPackage
$packageInstallOuput = Invoke-Expression -Command $cmd
Write-Verbose -Message "Package output $packageInstallOuput"

if ($LASTEXITCODE -in 350,1604) {
Write-Verbose -Message "Package has requested a reboot."
$global:DSCMachineStatus = 1
}

# Clear Package Cache
Get-ChocoInstalledPackage -Purge

Expand Down Expand Up @@ -331,6 +336,11 @@ function UninstallPackage

Write-Verbose -Message "Package uninstall output $packageUninstallOuput "

if ($LASTEXITCODE -in 350,1604) {
Write-Verbose -Message "Package has requested a reboot."
$global:DSCMachineStatus = 1
}

# Clear Package Cache
Get-ChocoInstalledPackage -Purge

Expand Down Expand Up @@ -490,6 +500,11 @@ Function Upgrade-Package {
$packageUpgradeOuput = Invoke-Expression -Command $cmd
$packageUpgradeOuput | ForEach-Object { Write-Verbose -Message $_ }

if ($LASTEXITCODE -in 350,1604) {
Write-Verbose -Message "Package has requested a reboot."
$global:DSCMachineStatus = 1
}

# Clear Package Cache
Get-ChocoInstalledPackage -Purge
}
Expand Down