Software: Picolino’s Windows starter pack

1 minute read

Windows is an operating system without useful built-in software. So after every Windows reinstall you need to manually install all required software.

Here is an installation-script of useful software that I use for almost any type of tasks.

Note that you need to launch all commands below through admin shell!

Chocolatey

To install all required software with one script we gonna use windows package manager (NOT YOU) - Chocolatey.

You can install it by using this command in 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://chocolatey.org/install.ps1'))

Software installation script

After chocolatey install - reload PowerShell command shell, launch it again and just run the script below to install all required software at one launch:

# Utilities
cinst microsoft-windows-terminal -y
cinst googlechrome -y && choco pin add -n googlechrome -y
cinst figma -y && choco pin add -n figma -y
cinst keepass -y
cinst greenshot -y
cinst minibin -y
cinst processhacker -y
cinst treesizefree -y

# Social
cinst discord -y && choco pin add -n discord -y
cinst telegram -y && choco pin add -n telegram -y

# Programming
cinst git -y
cinst gnupg -y
cinst jetbrainstoolbox -y && choco pin add -n jetbrainstoolbox -y
cinst vscode -y && choco pin add -n vscode -y

# Games
cinst steam -y && choco pin add -n steam -y
cinst origin -y && choco pin add -n origin -y
cinst epicgameslauncher -y && choco pin add -n epicgameslauncher -y