PortValhalla/scripts/Windows/Software/Ubiquiti UniFi Controller/Install.ps1

10 lines
455 B
PowerShell
Raw Normal View History

2023-07-18 17:09:12 +00:00
#!/bin/pwsh
$ahkID = "AutoHotkey.AutoHotkey";
$ahk1ID = "Lexikos.AutoHotkey";
2023-07-18 17:13:11 +00:00
winget uninstall --accept-source-agreements -e --id "$ahkID";
2023-07-18 17:09:12 +00:00
winget install --accept-source-agreements --accept-package-agreements -e --id "$ahk1ID";
choco install -y temurin11jre;
choco install -y ubiquiti-unifi-controller;
2023-07-18 17:13:11 +00:00
winget uninstall --accept-source-agreements -e --id "$ahk1ID";
2023-07-18 17:09:12 +00:00
winget install --accept-source-agreements --accept-package-agreements -e --id "$ahkID";