-
-
Save mmarcott/247ba8448bc410803cb7 to your computer and use it in GitHub Desktop.
My boxstarter script
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=$true # 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 | |
| Set-ExplorerOptions -showFileExtensions | |
| Enable-RemoteDesktop | |
| #Disable-InternetExplorerESC | |
| #Disable-UAC | |
| Set-TaskbarOptions -Size Small -Lock -Dock Bottom | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| # Update Windows and reboot if necessary | |
| Install-WindowsUpdate -AcceptEula | |
| 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 } | |
| cinstm powershell | |
| #Browsers | |
| #cinstm googlechrome | |
| cinstm firefox | |
| #cinstm flashplayerplugin | |
| #cinstm javaruntime | |
| cinstm adobereader | |
| #Other essential tools | |
| cinstm 7zip | |
| cinstm vlc | |
| cinstm ccleaner | |
| cinstm pdfcreator | |
| #cinstm teamviewer | |
| #cinstm sumatrapdf | |
| cinstm dotnet4.5 | |
| # cinstm adobereader | |
| # cinstm javaruntime | |
| Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" | |
| # Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment