diff --git a/README.md b/README.md index acd1310..6115484 100644 --- a/README.md +++ b/README.md @@ -23,17 +23,17 @@ chmod +x ./setup.sh - [x] Docker swarm alias - [ ] Kubernetes setup - [ ] Linux network setup -- [ ] Linux Dev workstation setups -- [ ] WSL setup -- [ ] Windows package setup -- [ ] Windows Dev setup +- [ ] Linux Dev workstation setup +- [x] WSL setup +- [x] Windows package manager setup +- [x] Windows Dev setup ## Compatible operating system - [x] OpenSuse -- [x] Fedora +- [ ] Fedora - [ ] Ubuntu - [ ] Windows WSL -- [ ] Windows +- [x] Windows - [x] Mac OS MIT License diff --git a/windows/winget-setup.ps1 b/windows/package-manager-setup.ps1 similarity index 62% rename from windows/winget-setup.ps1 rename to windows/package-manager-setup.ps1 index 87c44fd..a6fc0b1 100644 --- a/windows/winget-setup.ps1 +++ b/windows/package-manager-setup.ps1 @@ -7,4 +7,7 @@ if ((Get-ComputerInfo | Select-Object -expand OsName) -match 10) { } else { Install-Module -Name Microsoft.WinGet.Client -Force -AllowPrerelease -AcceptLicense -} \ No newline at end of file +} + +## chocolatey setup +Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))