Skip to content

Instantly share code, notes, and snippets.

@SebRut
Last active May 8, 2019 10:15
Show Gist options
  • Save SebRut/64161b6f55b9691d8d16f88f9b0bea79 to your computer and use it in GitHub Desktop.
Save SebRut/64161b6f55b9691d8d16f88f9b0bea79 to your computer and use it in GitHub Desktop.
Boxstarter Windows Setups
#### install critical windows updates
Install-WindowsUpdate -acceptEula true -SupressReboots true -criteria IsHidden=0 and IsInstalled=0 and Type='Software' and BrowseOnly=0
#### configure windows
Set-WindowsExplorerOptions -EnableShowFileExtensions
Disable-GameBarTips
Disable-BingSearch
#### install common programs
cinst unchecky
cinst 7zip
cinst vlc
cinst adobereader
cinst paint.net
cinst notepadplusplus
cinst googlechrome
#### install remaining windows updates
Install-WindowsUpdate -acceptEula true -SupressReboots true
#### install critical windows updates
Install-WindowsUpdate -acceptEula true -SupressReboots true -criteria IsHidden=0 and IsInstalled=0 and Type='Software' and BrowseOnly=0
#### configure windows
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar -EnableShowFrequentFoldersInQuickAccess -EnableExpandToOpenFolder -EnableShowRibbon
Disable-GameBarTips
Disable-BingSearch
#### programs
cinst unchecky
cinst 7zip
cinst vlc
cinst adobereader
cinst paint.net
cinst notepadplusplus
cinst googlechrome
cinst git
cinst jetbrains.toolbox
cinst f.lux
cinst sharex
cinst malwarebytes
cinst openssh
cinst python3
#### install remaining windows updates
Install-WindowsUpdate -acceptEula true -SupressReboots true
@SebRut
Copy link
Author

SebRut commented May 8, 2019

first version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment