Skip to content

Instantly share code, notes, and snippets.

@Eboubaker
Last active December 1, 2021 18:00
Show Gist options
  • Save Eboubaker/96538c2cdc5a3e450db5773f4b367be0 to your computer and use it in GitHub Desktop.
Save Eboubaker/96538c2cdc5a3e450db5773f4b367be0 to your computer and use it in GitHub Desktop.
script to Install required applications after clean windows 10 install

Install required applications after clean windows 10 install

In privileged powershell

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'))
choco feature disable -n=allowGlobalConfirmation

Essentials

choco install vlc
choco install winrar
choco install imageglass

Tools

choco install treesizefree
choco install everything

Entertainment

choco install spotify

Development

Editors

choco install vscode
choco install intellijidea-ultimate # https://plugins.zhile.io

Tools

choco install git
choco install python
choco install nodejs
choco install curl
choco install docker

Laravel development

choco install php
choco install composer
choco install laragon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment