Skip to content

Instantly share code, notes, and snippets.

@kaleho
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save kaleho/916d41d0d404224bd914 to your computer and use it in GitHub Desktop.

Select an option

Save kaleho/916d41d0d404224bd914 to your computer and use it in GitHub Desktop.
Boxstarter setup for Dev PC
# http://boxstarter.org/package/url?
# 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
# Basic setup
Update-ExecutionPolicy Unrestricted
Enable-RemoteDesktop
Disable-InternetExplorerESC
Disable-UAC
if (Test-PendingReboot) { Invoke-Reboot }
cinstm DotNet3.5 # Not automatically installed with VS 2013. Includes .NET 2.0. Uses Windows Features to install.
if (Test-PendingReboot) { Invoke-Reboot }
cinst DotNet4.5
if (Test-PendingReboot) { Invoke-Reboot }
cinst DotNet4.5.1
if (Test-PendingReboot) { Invoke-Reboot }
cinst DotNet4.5.2
if (Test-PendingReboot) { Invoke-Reboot }
# Update Windows and reboot if necessary
Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
cinst python
if (Test-PendingReboot) { Invoke-Reboot }
cinst visualstudio2013ultimate -InstallArguments "/Features:'WebTools SQL Bland'"
if (Test-PendingReboot) { Invoke-Reboot }
cinst visualstudio2015ultimate -pre
if (Test-PendingReboot) { Invoke-Reboot }
#Install-ChocolateyPackage `
# 'VS2013.4.exe' 'exe' "/Passive /NoRestart /Log $($env:temp)\VS20134.log" `
# 'http://download.microsoft.com/download/9/4/3/9430B009-5E55-4D48-ADA6-CBC1E025573E/VS2013.4.exe' -validExitCodes @(0,3010)
cinst resharper
cinst 7zip.install
cinst 7zip.commandline
cinst adobereader
cinst Console2
cinst fiddler4
cinst filezilla
cinst git.install
cinst GoogleChrome
cinst kdiff3
cinst nodejs.install
cinst notepadplusplus
cinst NuGet.CommandLine
cinst NugetPackageExplorer
cinst paint.net
cinst scriptcs
cinst SublimeText3
cinst SublimeText3.PackageControl
cinst SublimeText3.PowershellAlias
cinst sublimetext3-contextmenu
cinst uTorrent
cinst vlc
cinst freedownloadmanager
cinst pandoc
cinst sysinternals
Set-TaskbarOptions -Size Small
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment