mirror of
https://github.com/rbreaves/kinto.git
synced 2025-06-27 16:41:45 +02:00
23 lines
666 B
PowerShell
23 lines
666 B
PowerShell
if(-not(Get-Command "choco" -errorAction SilentlyContinue)){
|
|
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'))
|
|
refreshenv
|
|
}
|
|
else{
|
|
Write-Output "Chocolatey is already installed"
|
|
}
|
|
|
|
if(-not(test-path "C:\Program Files\AutoHotkey\AutoHotkey.exe")){
|
|
choco install autohotkey.install
|
|
}
|
|
else{
|
|
Write-Output "Autohotkey is already installed"
|
|
}
|
|
if(-not(test-path "C:\Strawberry\")){
|
|
choco install strawberryperl
|
|
refreshenv
|
|
}
|
|
else{
|
|
Write-Output "Perl is already installed"
|
|
}
|