You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
377 B
8 lines
377 B
$packageName = 'zerotier-one' |
|
$installerType = 'msi' |
|
$url = 'https://download.zerotier.com/RELEASES/1.2.4/dist/ZeroTier%20One.msi' |
|
$url64 = 'https://download.zerotier.com/RELEASES/1.2.4/dist/ZeroTier%20One.msi' |
|
$silentArgs = '/quiet' |
|
$validExitCodes = @(0,3010) |
|
|
|
Install-ChocolateyPackage $packageName $installerType $silentArgs $url $url64 -validExitCodes $validExitCodes
|
|
|