Windows
Windows Software Deployment
windows-software-deploy
Notes
You need to install xampp
, composer
, teramind
, gitkraken
and nvm (nodejs)
manually as need they further configuration
- GitKraken
- Open PowerShell as "Run as Administrator"
- Paste following and press enter:
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
or
Set-ExecutionPolicy Bypass -Scope Process -Force; `
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- Set Cache Path
choco config set cacheLocation D:\Choco\softwares
- Use following command to install all softwares:
choco install Packages.config --yes
or
choco install Packages.config --yes --force