Everyone loves chocolates !
What if you do not have to download all your standard applications individually and updating them each when there are updates ?
There are many ways to get all of your standard applications all updated using applications like Ninites, Appget or Yum, but Chocolatey is simply the easiest 😊
Let's get straight to it !
1. Prep-Reqs: Windows 7+ or Windows Server 2003+ / .NET Framework 4
2. Open command prompt as admin and copy-paste this and press Enter to run:
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'))
Done Installing !
You can find all your standard or favourite apps as a Chocolatey package from here:
https://chocolatey.org/packages
Copy all the application names that you will need on your machine (example: firefox, 7zip.install & jre8). Tip: You can copy all the applications in a notepad with a space in between them for installation).
To install all your standard applications, simply copy the text from your Notepad (like below) and paste them in command prompt (opened as administrator) and press Enter.
What if you do not have to download all your standard applications individually and updating them each when there are updates ?
There are many ways to get all of your standard applications all updated using applications like Ninites, Appget or Yum, but Chocolatey is simply the easiest 😊
Let's get straight to it !
1. Prep-Reqs: Windows 7+ or Windows Server 2003+ / .NET Framework 4
2. Open command prompt as admin and copy-paste this and press Enter to run:
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'))
Done Installing !
You can find all your standard or favourite apps as a Chocolatey package from here:
https://chocolatey.org/packages
Copy all the application names that you will need on your machine (example: firefox, 7zip.install & jre8). Tip: You can copy all the applications in a notepad with a space in between them for installation).
To install all your standard applications, simply copy the text from your Notepad (like below) and paste them in command prompt (opened as administrator) and press Enter.
You will find that all your selected applications are installed at one go !
TIP: If you do not need confirmation, you can add -y in the command to skip confirmation.
When new version of your installed applications is out, you just need give the below command in your command prompt:
choco upgrade all -y
To uninstall an application, this is the below command:
choco uninstall spotify -y