Last active
June 19, 2019 21:12
-
-
Save Boggin/5bcaa3cf4712f6801d0010cab64ee8f3 to your computer and use it in GitHub Desktop.
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
# START http://boxstarter.org/package/url?https://gist.github.com/Boggin/5bcaa3cf4712f6801d0010cab64ee8f3/boxstarter.dev | |
# 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 | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# Configure Windows | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
Update-ExecutionPolicy Unrestricted | |
Disable-UAC | |
Set-TaskbarOptions -Size Small | |
cinst -y Microsoft-Hyper-V-All -source windowsFeatures | |
Install-WindowsUpdate -AcceptEula | |
if (Test-PendingReboot) { Invoke-Reboot } | |
Disable-InternetExplorerESC | |
Disable-GameBarTips | |
Disable-BingSearch | |
#Move-LibraryDirectory | |
cinst 7zip | |
#cinst agentransack | |
cinst cmdermini | |
#cinst everything | |
cinst docker-desktop | |
cinst docker-compose | |
cinst firefox | |
#cinst gpg4win-vanilla | |
cinst googlechrome | |
cinst greenshot | |
cinst hasklig | |
cinst thunderbird | |
cinst meld | |
cinst notepadplusplus | |
#cinst nvm | |
cinst qtpass | |
cinst vscode | |
cinst yubico-authenticator | |
if (Test-PendingReboot) { Invoke-Reboot } | |
#cinst IIS-WebServerRole -source windowsfeatures | |
#Install-ChocolateyVsixPackage RoamingExtensionManager https://visualstudiogallery.msdn.microsoft.com/7b421a95-c32c-4433-a2be-a41b276013ab/file/172117/2/RoamingExtensionManager.vsix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment