# 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"