From 7b11234ea2ba81adee446a2c4b766d935036b40e Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 13 Mar 2024 09:35:27 +0100 Subject: [PATCH] Install `winget` using the script --- scripts/Windows/OS/InitialBoot.ps1 | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/Windows/OS/InitialBoot.ps1 b/scripts/Windows/OS/InitialBoot.ps1 index bd55d157..f39e4d5c 100644 --- a/scripts/Windows/OS/InitialBoot.ps1 +++ b/scripts/Windows/OS/InitialBoot.ps1 @@ -7,10 +7,7 @@ choco install -y git --params='/WindowsTerminalProfile /DefaultBranchName:main'; choco install -y powershell-core --install-arguments='"ADD_FILE_CONTEXT_MENU_RUNPOWERSHELL=1 ADD_EXPLORER_CONTEXT_MENU_OPENPOWERSHELL=1 REGISTER_MANIFEST=1 USE_MU=1 ENABLE_MU=1"'; refreshenv; -if (-not $(Get-Command winget)) { - choco install -y winget; -} - Set-Location C:/; git clone https://git.nuth.ch/manuth/PortValhalla.git; Set-Location PortValhalla; +./scripts/Windows/Software/winget/Install.ps1;