Last active
May 3, 2018 08:40
-
-
Save harshil93/440deda4478a33886658ed51dfac2198 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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