Last active
August 29, 2015 14:13
-
-
Save jmkelly/28a9959136e2e9ae701d to your computer and use it in GitHub Desktop.
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=$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 | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Enable-RemoteDesktop | |
Disable-InternetExplorerESC | |
Disable-UAC | |
#apps | |
cinst 7zip.install | |
cinst baretail | |
cinst ccleaner | |
cinst cmder | |
cinst fiddler4 | |
cinst googlechrome | |
cinst greenshot | |
cinst nodejs.install | |
cinst NugetPackageExplorer | |
cinst pvc | |
cinst scriptcs | |
cinst papercut | |
cinst sublimetext3.app | |
cinst terminals | |
cinst vlc | |
cinst windirstat | |
cinst linqpad4 | |
cinst paint.net | |
cinst atom | |
cinst teamviewer | |
cinst zoomit | |
cinst putty | |
cinst SourceTree | |
cinst imageresizerapp | |
cinst skype | |
cinst wget | |
choco install bulkrenameutility.install | |
choco install grepWin | |
choco install clipx | |
choco install git.install | |
choco install CloudBerryExplorer.AzureStorage | |
cinst IIS-WebServerRole -source windowsfeatures | |
cinst IIS-HttpCompressionDynamic -source windowsfeatures | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe" | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Sublime Text 3\sublime_text.exe" | |
# Update Windows and reboot if necessary | |
#Install-WindowsUpdate -AcceptEula | |
# Last because they won't auto-install | |
cinst PngGauntlet | |
cinst utorrent | |
if (Test-PendingReboot) { Invoke-Reboot } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment