-
Notifications
You must be signed in to change notification settings - Fork 94
MSI
bcurran3 edited this page Aug 23, 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
Well that doesn't look as expected!