-
Notifications
You must be signed in to change notification settings - Fork 93
MSI
bcurran3 edited this page Aug 22, 2017
·
7 revisions
instructions
-
$packageName = '' -
$installerType = 'msi' -
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" -
$url = '' -
$checksum = '' -
$silentArgs = '' -
$validExitCodes = @(0, 3010, 1641) -
$packageArgs = @{ -
packageName = $packageName -
fileType = $installerType -
url = $url -
validExitCodes= $validExitCodes -
silentArgs = $silentArgs -
softwareName = '' -
checksum = $checksum -
checksumType = 'sha256' -
} -
Install-ChocolateyPackage @packageArgs