renamed repo & changed folder structure
This commit is contained in:
parent
49a84a90a9
commit
ecf0b5a5a0
8 changed files with 7 additions and 0 deletions
7
installwinget.ps1
Normal file
7
installwinget.ps1
Normal 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."
|
||||
}
|
Loading…
Reference in a new issue