PowerShell

Package Management in PowerShell (Chocolatey)

Tired of installing 3rd party software? So far, 7zip, winrar, Chrome, Adobe Reader, Java etc … has to be downloaded manually. This is over now. Package Management in PowerShell is here! Online repository is the keyword. Install multiple software in silent mode with PowerShell. Here we go …

Checking Prerequisites

First, we check if PowerShell allows to run scripts. The execution policy should be configured to unrestricted.

Get-ExecutionPolicy
Set-ExecutionPolicy Unrestricted

Unbenannt.PNG

Installing the Packageprovider Chocolatey

Get-PackageProvider checks the available provider packages.

Get-PackageProvider

Unbenannt.PNG

No Chocolatey. Let´s continue with Find-Package. Press Y to install the NuGet Provider.

Find-Package

Unbenannt.PNG

Now we can move on. We install the Package Provider Chocolatey. Press Y to install it.

Get-PackageProvider -Name chocolatey

Unbenannt.PNG

The NuGet and Chocolatey provider should now appear in the list of Package Providers.

23a.PNG

Package Management in Action

Let´s search for 7zip.

Find-Package -Name *7zip*

24

Next we use Install-Package to install 7zip.

Install-Package -Name 7zip

25

Installing simultaneously

Or install packages simultaneously.

Install-Package -Name 7zip, WinRAR, Opera

Unbenannt

Find more Software

You can search for more Software with Find-Package.

Find-Package -ProviderName chocolatey

Unbenannt.PNG

The number of software packages is amazing.

Unbenannt.PNG

Safety Note

Can we trust chocolatey? I am not sure. For private use its ok. But for professional use i recommend to create your own Package Provider.

Categories: PowerShell, Windows 10

Tagged as: , ,

5 replies »

  1. Is install-package using chocolatey as source still working for you – is it still supported? I can’t get it to work. Different errors for different packages…

    Like

  2. Man, I must thank you for that! I had seen a lot about chocolatey while searching for deployment techniques with powershell but never wanted to go on with it, but now with this article I could see I was wasting my time!

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

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