chocolateyInstall.ps1 (330B)
1 $packageName = '{{.Choco.ID}}' 2 $fileType = 'msi' 3 $silentArgs = '/quiet'; 4 $scriptPath = $(Split-Path $MyInvocation.MyCommand.Path); 5 $fileFullPath = Join-Path $scriptPath '{{.Choco.MsiFile}}'; 6 7 Install-ChocolateyInstallPackage $packageName $fileType $silentArgs $fileFullPath -checksum '{{.Choco.MsiSum}}' -checksumType = 'sha256'