Skip to content

Instantly share code, notes, and snippets.

@hylickipiotr
Last active January 17, 2021 13:00
Show Gist options
  • Select an option

  • Save hylickipiotr/80b48039843f27446fe5806805a41449 to your computer and use it in GitHub Desktop.

Select an option

Save hylickipiotr/80b48039843f27446fe5806805a41449 to your computer and use it in GitHub Desktop.
This is a installation package of startup applications for Windows.

Chocolatey Windows startup application pack


Web

  • brave
  • googlechrome
  • firefox
  • opera
  • qbittorrent

Communicator

  • skype
  • microsoft-teams
  • discord

File managment

  • 7zip
  • totalcommander
  • google-backup-and-sync
  • freefilesync

File editor

  • notepadplusplus
  • vscode-insiders
  • atom
  • sublimetext3
  • brackets

Media

  • vlc
  • foobar2000
  • irfanview
  • spotify
  • audacity
  • ffmpeg
  • handbrake
  • obs-studio
  • mkvtoolnix

System

  • cpu-z
  • coretemp
  • microsoft-windows-terminal
  • ccleaner
  • teamviewer.host
  • jre8 x64
  • defraggler

Virtualization

  • virtualbox

Development

  • git
  • github-desktop
  • putty
  • nodejs
  • postman
  • python
  • pycharm-community

Books

  • calibre
  • zotero

Game

  • steam
  • origin
#Shell installation chocolatey
#@powershell -NoProfile -ExecutionPolicy Bypass -Command "Set-ExecutionPolicy Unrestricted && iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
[string]$ALL_USERS_PROFILE = [Environment]::GetEnvironmentVariable("ALLUSERSPROFILE");
Set-ExecutionPolicy Unrestricted
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
$env:Path += ";$ALL_USERS_PROFILE\chocolatey\bin"
#WEB
choco install brave -y
choco install googlechrome -y
# choco install firefox -y
# choco install opera -y
choco install qbittorrent -y
#COMMUNICATOR
choco install skype -y
choco install microsoft-teams.install -y
choco install discord.install -y
#FILES MANAGEMENT
choco install 7zip.install -y
choco install totalcommander -y
choco install google-backup-and-sync -y
choco install freefilesync -y
#FILE EDITOR
choco install notepadplusplus.install -y
choco install vscode-insiders.install -y
# choco install atom -y
# choco install sublimetext3 -y
# choco install brackets -y
#MEDIA
choco install vlc -y
choco install foobar2000 -y
choco install irfanview -y
choco install spotify -y
choco install audacity -y
choco install ffmpeg -y
choco install handbrake.install -y
choco install obs-studio.install -y
choco install mkvtoolnix -y
#SYSTEM
choco install cpu-z.install -y
choco install coretemp -y
choco install microsoft-windows-terminal -y
choco install ccleaner -y
choco install teamviewer.host -y
choco install jre8 -PackageParameters "/exclude:64" -y
choco install defraggler -y
#VIRTUALIZATION
choco install virtualbox -y
#DEVELOPMENT
choco install git.install -y
choco install github-desktop -y
choco install putty.install -y
choco install nodejs -y
choco install postman -y
choco install python -y
choco install pycharm-community -y
#BOOKS
choco install calibre -y
choco install zotero -y
#GAME
choco install steam -y
choco install origin -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment