From bb195a5ec59df99760c307a2ec1a36d3791a3387 Mon Sep 17 00:00:00 2001 From: Jamie Clayton <834354+Jamie-Clayton@users.noreply.github.com> Date: Tue, 8 Aug 2023 21:10:21 +1000 Subject: [PATCH] chore: Include winget package installation option --- .../Powershell/DownloadAzDOProjectRepositories.ps1 | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/devops/Powershell/DownloadAzDOProjectRepositories.ps1 b/devops/Powershell/DownloadAzDOProjectRepositories.ps1 index 64906e8..ef07760 100644 --- a/devops/Powershell/DownloadAzDOProjectRepositories.ps1 +++ b/devops/Powershell/DownloadAzDOProjectRepositories.ps1 @@ -1,10 +1,16 @@ # Download all the git source code repositories from an Azure Dev Ops Organisation and Project to a single directory. # 1. Pre Requisites (uncomment as needed) -# choco install powershell -y -# choco install powershell-core -y -# choco install Git -y -# choco install azure-cli -y +# choco install powershell -y +# choco install powershell-core -y +# choco install Git -y +# choco install azure-cli -y + +# Alternate package installation for Windows 11 +# winget install -e --id Microsoft.PowerShell +# winget install -e --id Microsoft.WindowsTerminal +# winget install -e --id Git.Git +# winget install -e --id Microsoft.AzureCLI Clear-Host