Skip to content

Instantly share code, notes, and snippets.

@Boggin
Last active June 19, 2019 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Boggin/5bcaa3cf4712f6801d0010cab64ee8f3 to your computer and use it in GitHub Desktop.
Save Boggin/5bcaa3cf4712f6801d0010cab64ee8f3 to your computer and use it in GitHub Desktop.
Boxstarter script
# 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