Microsoft Powershell - Install software with Chocolatey.

Опубликовано: 19 Октябрь 2024
на канале: Jonathan Steadman
42
1

I did not want this video to be very long as I could just comment the rest of the commands here.
You can upgrade your packages by doing this:
choco upgrade software.
You can unistall software by doing this:
choco uninstall software.
You can try to find software by doing this:
choco find software. It will display if the software is there or not.

Find out more information:
choco info software.

Upgrade all the packages with this command:
choco upgrade all.

This is very useful package manager for Windows, if you wanna install a software in like 5 seconds instead of going on the web browser and looking for the software for like 5 minutes.

Their website: https://community.chocolatey.org/
Here you will find more information.

Install package manager with powershell or command prompt.
https://community.chocolatey.org/courses/i...

As an extra thing, if you wanna see all the packages installed with this choco package manger. Run this:
choco list --local-only

Thanks Lol.