renamed repo & changed folder structure

This commit is contained in:
rgmcewan 2024-10-28 20:38:22 +10:00
parent 49a84a90a9
commit ecf0b5a5a0
8 changed files with 7 additions and 0 deletions

7
installwinget.ps1 Normal file
View file

@ -0,0 +1,7 @@
# Install Winget script
if (!(Get-Command winget -ErrorAction SilentlyContinue)) {
Write-Output "Winget is not found, installing..."
iex "& { $((iwr -useb https://aka.ms/install-winget).Content) }"
} else {
Write-Output "Winget already installed."
}