Last active
August 29, 2015 14:20
-
-
Save warnergodfrey/5712aac100b9deaf2351 to your computer and use it in GitHub Desktop.
boxstarter.ps1
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
Set-WindowsExplorerOptions -DisableShowHiddenFilesFoldersDrives -DisableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
Disable-UAC | |
Install-WindowsUpdate | |
Enable-MicrosoftUpdate | |
choco update | |
choco install microsoftsecurityessentials -y | |
choco install javaruntime -y | |
choco install 7zip -y | |
choco install dropbox -y | |
choco install logmein.client -y | |
choco install sumatrapdf -y | |
choco install ccleaner -y | |
choco install itunes -y | |
choco install google-chrome-x64 -y | |
choco install firefox -y | |
choco install flashplayerplugin -y | |
choco install adobereader -y | |
choco install 1password -y | |
choco install notepadplusplus -y | |
choco install atom -y | |
choco install evernote -y | |
choco install skitch -y | |
Move-LibraryDirectory "Personal" "$env:UserProfile\Dropbox\Documents" | |
Move-LibraryDirectory "Desktop" "$env:UserProfile\Dropbox\Desktop" | |
Move-LibraryDirectory "My Video" "$env:UserProfile\Dropbox\Videos" | |
Move-LibraryDirectory "My Pictures" "$env:UserProfile\Dropbox\Photos" | |
Move-LibraryDirectory "My Music" "$env:UserProfile\Dropbox\Music" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment