Skip to content

Instantly share code, notes, and snippets.

@MattHuntington
Created January 3, 2018 17:04
Show Gist options
  • Save MattHuntington/db1de19ac23cd0e13ee79cabeb328821 to your computer and use it in GitHub Desktop.
Save MattHuntington/db1de19ac23cd0e13ee79cabeb328821 to your computer and use it in GitHub Desktop.
# make it so we don't have to agree to prompts
chocolatey feature enable -n=allowGlobalConfirmation #test with error about future versions of chocolatey
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false
# Setup windows options
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableListDesktopAppsFirst
Enable-RemoteDesktop
Disable-InternetExplorerESC
#setup chocolatey
cinst chocolatey
cinst chocolateygui
# media players/viewers
cinst cutepdf
cinst adobereader
cinst nitroreader.install
cinst vlc
cinst paint.net
cinst mpc-be
cinst handbrake.install # chocolatey is pointing at old version
# web stuff
cinst google-chrome-x64 -y
cinst pidgin
cinst logmein.client
cinst firefox
cinst opera
cinst maxthon
cinst googledrive
# dev tools
cinst libreoffice
cinst beyondcompare
cinst filezilla
cinst filezilla.server
cinst notepadplusplus.install
cinst linqpad
cinst rdcman
cinst virtualbox
# virtualbox.extensionpack #currrent it is out of date but add back in when they update to 5.0
cinst github
cinst putty
cinst tortoisesvn
cinst webpi
cinst visualstudiocode
cinst procmon
cinst windbg
cinst webdeploy
# misc apps
cinst keepass.install
cinst malwarebytes
cinst windirstat
cinst winrar
cinst audacity
cinst tor-browser
cinst steam
cinst qbittorrent
cinst recuva
# SQL server
cinst sql-server-management-studio
# restore confirmation prompts
chocolatey feature disable -n=allowGlobalConfirmation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment