Install with chocolatey automatically all important apps for development
- Install chocolatey in windows powershell as administrator - https://chocolatey.org/install
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'))
- Install choco packages using packages.config ( change with your path of packages config file )
choco install c:\shared\packages.config -y
- Wait until finish installation and you are ready for 👨💻👨💻👨💻👨💻!!!
If you want to export from existing choco machine then :
change folderName
choco export -o="'c:\{folderName}\packages.config'"
Update choco packages
choco update all -y