Skip to content

Instantly share code, notes, and snippets.

@DamianMac
Last active August 24, 2017 00:43
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 DamianMac/d62bb529764da60d45c4 to your computer and use it in GitHub Desktop.
Save DamianMac/d62bb529764da60d45c4 to your computer and use it in GitHub Desktop.
$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
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
#Disable hibernate
powershell -Command "Start-Process 'powercfg.exe' -Verb runAs -ArgumentList '/h off'"
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar -DisableOpenFileExplorerToQuickAccess -DisableShowRecentFilesInQuickAccess -DisableShowFrequentFoldersInQuickAccess -EnableExpandToOpenFolder
#cinst IIS-WebServerRole -source windowsfeatures
#Essentials
cinst googlechrome
#VS
choco install visualstudio2017community
choco install visualstudio2017-workload-manageddesktop
choco install visualstudio2017-workload-azure
choco install visualstudio2017-workload-netweb
choco install visualstudio2017-workload-netcoretools
choco install ReSharper
#utils
cinst mRemoteNG
cinst 7zip
#Dev tools
cinst visualstudiocode
cinst linqpad
cinst beyondcompare
cinst gitextensions
cinst PoshGit
cinst sysinternals
cinst fiddler4
cinst dotpeek
cinst notepaddplusplus
cinst nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment