Update boxstarter.txt
This commit is contained in:
parent
d1610451ba
commit
6b89f40822
|
@ -1,28 +1,76 @@
|
||||||
### Set Time Zone ###
|
### Invoke Reboot to capture password... less babysitting afterwards ###
|
||||||
Write-BoxstarterMessage "Setting time zone to Romance Standard Time"
|
Invoke-Reboot
|
||||||
& C:\Windows\system32\tzutil /s "Romance Standard Time"
|
|
||||||
Install-WindowsUpdate -AcceptEula
|
Install-WindowsUpdate -AcceptEula
|
||||||
cinst google-chrome-x64 -y
|
if (Test-PendingReboot) { Invoke-Reboot }
|
||||||
cinst skype -y
|
|
||||||
cinst 7zip -y
|
### Set up Windows ###
|
||||||
cinst filezilla -y
|
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
|
||||||
cinst gpg4win -y
|
|
||||||
cinst lastpass -y
|
|
||||||
cinst thunderbird -y
|
|
||||||
cinst pidgin -y
|
|
||||||
cinst pidginotrplugin -y
|
|
||||||
cinst putty -y
|
|
||||||
cinst sublimetext3 -y
|
|
||||||
cinst teamviewer -y
|
|
||||||
cinst f.lux -y
|
|
||||||
cinst sysinternals -y
|
|
||||||
cinst git -y
|
|
||||||
cinst git.install -y
|
|
||||||
cinst sourcetree -y
|
|
||||||
cinst dropbox -y
|
|
||||||
cinst tor-browser -y
|
|
||||||
Set-WindowsExplorerOptions -showProtectedOSFiles -showFileExtensions
|
|
||||||
Set-TaskbarOptions -Size Small -Lock
|
Set-TaskbarOptions -Size Small -Lock
|
||||||
Enable-RemoteDesktop
|
Enable-RemoteDesktop
|
||||||
cinst Microsoft-Hyper-V-All -source windowsFeatures -y
|
cinst Microsoft-Hyper-V-All -source windowsFeatures -y
|
||||||
cinst IIS-WebServerRole -source windowsfeatures -y
|
cinst IIS-WebServerRole -source windowsfeatures -y
|
||||||
|
if (Test-PendingReboot) { Invoke-Reboot }
|
||||||
|
|
||||||
|
### Power Plan
|
||||||
|
SetPowerPlan "High performance"
|
||||||
|
Write-BoxstarterMessage "Setting Standby Timeout to Never"
|
||||||
|
& powercfg.exe -change -standby-timeout-ac 0
|
||||||
|
& powercfg.exe -change -standby-timeout-dc 0
|
||||||
|
Write-BoxstarterMessage "Setting Monitor Timeout to Never"
|
||||||
|
& powercfg.exe -change -monitor-timeout-ac 0
|
||||||
|
& powercfg.exe -change -monitor-timeout-dc 0
|
||||||
|
Write-BoxstarterMessage "Setting Disk Timeout to Never"
|
||||||
|
& powercfg.exe -change -disk-timeout-ac 0
|
||||||
|
& powercfg.exe -change -disk-timeout-dc 0
|
||||||
|
Write-BoxstarterMessage "Turning off Windows Hibernation"
|
||||||
|
& powercfg.exe -h off
|
||||||
|
|
||||||
|
### 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"
|
||||||
|
|
Loading…
Reference in a new issue