Windows

A packaging manager for windows

Finally, came across a packaging manger for windows, where I can easily install windows software, the way its meant to be, unobtrusive and smooth.

Chocolatey is not the fanciest tool out there, but the one for which I  long felt a need and while you can argue that docker does that much fancier, but on a dev box, this is a tool that just works.

Just like apt-get , rpm or dpkg in Linux/Mac OS, finally came across a handy tool in windows.

Installation is a breeze (just open up cmd in administrative mode) and you just need to paste the following and sit back.

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

Remember to close the console and you are all set.

In a new command window, you can now see the chocolatey:

choco -? to see all the options which chocolatey provides.

Here’s a sample install:

And its a breeze, as I mentioned.

While the software is free (but close sourced), it also has enterprise options (for multiple machine automated installation options), its still has a lot of potential to be an indispensable tool. Microsoft, pay heed!

Published on System Code Geeks with permission by Sumit Bisht, partner at our SCG program. See the original article here: A packaging manager for windows

Opinions expressed by System Code Geeks contributors are their own.

Do you want to know how to develop your skillset to become a sysadmin Rockstar?

Subscribe to our newsletter to start Rocking right now!

To get you started we give you our best selling eBooks for FREE!

 

1. Introduction to NGINX

2. Apache HTTP Server Cookbook

3. VirtualBox Essentials

4. Nagios Monitoring Cookbook

5. Linux BASH Programming Cookbook

6. Postgresql Database Tutorial

 

and many more ....

 

I have read and agree to the terms & conditions

 

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button