Skip to content

Instantly share code, notes, and snippets.

@harshil93
Last active May 3, 2018 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harshil93/440deda4478a33886658ed51dfac2198 to your computer and use it in GitHub Desktop.
Save harshil93/440deda4478a33886658ed51dfac2198 to your computer and use it in GitHub Desktop.
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
Disable-UAC
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Set-TaskbarSmall
Enable-RemoteDesktop
cinst Microsoft-Hyper-V-All -source windowsFeatures
cinst TelnetClient -source windowsFeatures
cinst adobereader -y --allowemptychecksum
cinst 7zip.install -y --allowemptychecksum
# If we're doing web development, we need a few browsers
cinst GoogleChrome -y --allowemptychecksum
cinst Firefox -y --allowemptychecksum
# Gotta have Fiddler
cinst fiddler4 -y --allowemptychecksum
cinst visualstudiocode -y --allowemptychecksum
# Editors and merge tools
cinst notepadplusplus.install -y --allowemptychecksum
cinst sublimetext3 -y --allowemptychecksum
cinst sublimetext3.packagecontrol -y --allowemptychecksum
cinst vim -y --allowemptychecksum
cinst linqpad5 -y --allowemptychecksum
# Without Git, we might as well go home.
cinst git -y --allowemptychecksum
cinst poshgit -y --allowemptychecksum
cinst gitextensions -y --allowemptychecksum
# An awesome console
cinst conemu -y --allowemptychecksum
cinst bitvise-ssh-client -y --allowemptychecksum
cinst nodejs.install -y --allowemptychecksum
cinst vlc -y --allowemptychecksum
cinst dropbox -y --allowemptychecksum
# Gow tools
cinst install gow -y --allowemptychecksum
cinst install sysinternals -y --allowemptychecksum
cinst youtube-dl -y --allowemptychecksum
cinst windowsazurepowershell -y --allowemptychecksum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment