Skip to content

Instantly share code, notes, and snippets.

@MattHuntington
Last active August 29, 2015 14:26
Show Gist options
  • Save MattHuntington/7ed20125f6ed8766fa24 to your computer and use it in GitHub Desktop.
Save MattHuntington/7ed20125f6ed8766fa24 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
cinst putty
cinst tortoisesvn
if (Test-PendingReboot) { Invoke-Reboot }
cinst webpi
cinst visualstudiocode
cinst procmon
cinst windbg
cinst webdeploy
if (Test-PendingReboot) { Invoke-Reboot }
# misc apps
cinst keepass.install
cinst malwarebytes
cinst windirstat
cinst winrar
cinst audacity
cinst tor-browser
cinst steam
cinst qbittorrent
cinst recuva
if (Test-PendingReboot) { Invoke-Reboot }
# SQL server
cinst mssqlserver2012express
if (Test-PendingReboot) { Invoke-Reboot }
cinst mssqlservermanagementstudio2014express
if (Test-PendingReboot) { Invoke-Reboot }
chocolatey feature disable -n=allowGlobalConfirmation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment