8 lines
465 B
PowerShell
8 lines
465 B
PowerShell
#!/bin/pwsh
|
|
$ahkID = "AutoHotkey.AutoHotkey";
|
|
winget uninstall --accept-source-agreements -e --id "$ahkID";
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id "$ahkID" --version "1.1.37.00";
|
|
choco install -y temurin11jre;
|
|
choco install -y ubiquiti-unifi-controller --ignore-dependencies;
|
|
winget uninstall --accept-source-agreements -e --id "$ahkID";
|
|
winget install --accept-source-agreements --accept-package-agreements -e --id "$ahkID";
|