Last active
February 22, 2019 14:35
-
-
Save automatonic/7771dfd7015a72453091 to your computer and use it in GitHub Desktop.
An example boxstarter.org setup 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
#As described here: http://boxstarter.org/Learn/WebLauncher | |
#The command to run, built from the raw link of this gist | |
#START http://boxstarter.org/package/nr/url?https://gist.github.com/automatonic/7771dfd7015a72453091/raw/4cbbf4811d11929ebe0f98c51f04e7476179c13f/example.boxstarter | |
#Special windowsy stuff. see http://boxstarter.org/WinConfig | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
Install-WindowsUpdate | |
Disable-InternetExplorerESC | |
Disable-UAC | |
Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst | |
Set-TaskbarOptions -Size Large -Lock -Dock Bottom | |
Update-ExecutionPolicy | |
#install some applications | |
#See: https://chocolatey.org/packages for what you can install | |
choco install chocolatey | |
choco install LinkShellExtension | |
choco install notepadplusplus.install | |
choco install 7zip.install | |
choco install GoogleChrome | |
choco install vlc | |
choco install paint.net | |
choco install windirstat | |
choco install procexp | |
choco install gimp | |
choco install wincdemu | |
choco install webpi | |
choco install InkScape -Version 0.48.5 | |
choco install Gow | |
choco install githubforwindows | |
choco install grepwin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment