Skip to content

Instantly share code, notes, and snippets.

@labaneilers
Last active December 1, 2017 21:13
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 labaneilers/4274d90ddc2add8885b1732700b046f8 to your computer and use it in GitHub Desktop.
Save labaneilers/4274d90ddc2add8885b1732700b046f8 to your computer and use it in GitHub Desktop.
sitecore-base
$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
& C:\Windows\system32\tzutil /s "Eastern Standard Time"
Update-ExecutionPolicy Unrestricted
Disable-UAC
Set-WindowsExplorerOptions -EnableShowProtectedOSFiles -EnableShowFileExtension -EnableShowHiddenFilesFoldersDrives
Enable-RemoteDesktop
Disable-InternetExplorerESC
Install-WindowsUpdate
cinst git -y
cinst TortoiseGit -y
cinst VisualStudioCode -y
cinst GoogleChrome -y
cinst firefox -y
choco install dotnet3.5 -y
cinst javaruntime -y
cinst nodejs -version 4.4.7 -y
cinst ruby -version 2.3.3 -y
New-NetFirewallRule -DisplayName "allow ruby" -Program C:\tools\ruby23\bin\ruby.exe -Action Allow -Direction outbound
cinst mongodb -version 3.2.6 -y
cinst pstools -y
cinst awscli -y
cinst visualstudio2015professional -y
cinst mssqlservermanagementstudio2014express -y
cinst powershell -y
cinst IIS-WebServerRole -source windowsfeatures
cinst IIS-HttpCompressionDynamic -source windowsfeatures
cinst IIS-ManagementScriptingTools -source windowsfeatures
cinst IIS-WindowsAuthentication -source windowsfeatures
cinst IIS-WebServer -source windowsfeatures
cinst IIS-WebServerManagementTools -source windowsfeatures
cinst IIS-RequestFiltering -source windowsfeatures
cinst IIS-HttpRedirect -source windowsfeatures
cinst IIS-ASPNET45 -source windowsfeatures
cinst IIS-ASPNET -source windowsfeatures
cinst IIS-Metabase -source windowsfeatures
C:\Windows\System32\Sysprep\sysprep.exe /quiet /generalize /oobe /shutdown /mode:vm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment