DEV Community

redhcp
redhcp

Posted on

2 2

Chocolatey Powershell Install

Chocolatey Page for find more packages Here

Install choco

Set-Executionpolicy unrestricted -Force; #add permission execute powershell 
Enter fullscreen mode Exit fullscreen mode
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Enter fullscreen mode Exit fullscreen mode

or

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
Enter fullscreen mode Exit fullscreen mode

Upgrade choco

choco upgrade chocolatey
Enter fullscreen mode Exit fullscreen mode

Install choco apps

choco install adobereader
choco install googlechrome
choco install firefox
choco install winrar
choco install zoom
choco install k-litecodecpackfull
choco install sublimetext3.app


choco install vscode
choco install git.install
choco install python 
choco install microsoft-windows-terminal
choco install putty.install
choco install virtualbox
choco install docker-desktop
choco install grafana
choco install vnc-viewer
choco install github-desktop

choco install notion
choco install slack
choco install resilio-sync-home
choco install discord
choco install itunes
choco install windows10-media-creation-tool

choco install libreoffice-fresh
choco install office365business
choco install notepadplusplus
choco install google-drive-file-stream
choco install vlc
choco install dellcommandupdate 

Enter fullscreen mode Exit fullscreen mode

List choco apps Installed

choco list --local-only
Enter fullscreen mode Exit fullscreen mode

Update choco apps installed

cup -y all 
Enter fullscreen mode Exit fullscreen mode

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

Top comments (0)

AWS Security LIVE!

Tune in for AWS Security LIVE!

Join AWS Security LIVE! for expert insights and actionable tips to protect your organization and keep security teams prepared.

Learn More

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay