mirror of
https://github.com/rbreaves/kinto.git
synced 2025-06-28 17:11:43 +02:00
13 lines
466 B
PowerShell
13 lines
466 B
PowerShell
$testchoco = powershell choco -v
|
|
if(-not($testchoco)){
|
|
Write-Output "Seems Chocolatey is not installed, installing now"
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
|
|
}
|
|
else{
|
|
Write-Output "Chocolatey Version $testchoco is already installed"
|
|
}
|
|
|
|
if(-not(test-path "C:\Program Files\AutoHotkey\AutoHotkey.exe")){
|
|
choco install autohotkey.install
|
|
}
|