You've already forked github-action
mirror of
https://github.com/zerotier/github-action.git
synced 2026-05-22 16:27:40 -07:00
11 lines
406 B
PowerShell
Executable File
11 lines
406 B
PowerShell
Executable File
$uri="https://download.zerotier.com/dist/ZeroTierOne.msi"
|
|
$out="ZeroTierOne.msi"
|
|
Invoke-WebRequest -uri $uri -OutFile $out
|
|
|
|
$file = "ZeroTierOne.msi"
|
|
$log = "install.log"
|
|
$procMain = Start-Process "msiexec" "/i `"$file`" /qn /l*! `"$log`"" -NoNewWindow -PassThru
|
|
# $procLog = Start-Process "powershell" "Get-Content -Path `"$log`" -Wait" -NoNewWindow -PassThru
|
|
$procMain.WaitForExit()
|
|
# $procLog.Kill()
|