graffen.dk-website/boxstarter.txt

60 lines
1.6 KiB
Plaintext

Install-WindowsUpdate -AcceptEula
if (Test-PendingReboot) { Invoke-Reboot }
### Set up Windows ###
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
Set-TaskbarOptions -Size Small -Lock
Enable-RemoteDesktop
cinst Microsoft-Hyper-V-All -source windowsFeatures -y
cinst IIS-WebServerRole -source windowsfeatures -y
if (Test-PendingReboot) { Invoke-Reboot }
### Browsers ###
cinst google-chrome-x64 -y
if (Test-PendingReboot) { Invoke-Reboot }
### Communication ###
cinst skype -y
cinst thunderbird -y
cinst pidgin -y
cinst pidginotrplugin -y
if (Test-PendingReboot) { Invoke-Reboot }
### Utilities ###
cinst 7zip -y
cinst lastpass -y
cinst putty -y
cinst teamviewer -y
cinst f.lux -y
cinst sysinternals -y
cinst windirstat -y
if (Test-PendingReboot) { Invoke-Reboot }
### Encryption & Privacy ###
cinst gpg4win -y
cinst install truecrypt -version 7.1.20150620 -y
cinst tor-browser -y
if (Test-PendingReboot) { Invoke-Reboot }
### Source Control ###
cinst git -y
cinst git.install -y
cinst sourcetree -y
if (Test-PendingReboot) { Invoke-Reboot }
### Cloud & FTP ###
cinst filezilla -y
cinst dropbox -y
if (Test-PendingReboot) { Invoke-Reboot }
### Editors ###
cinst sublimetext3 -y
### Fun ###
choco install spotify -y
if (Test-PendingReboot) { Invoke-Reboot }
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Google\Chrome\Application\chrome.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles86)\Mozilla Thunderbird\thunderbird.exe"
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles)\Sublime Text 3\sublime_text.exe"