Last active
December 28, 2015 09:39
-
-
Save sbussinger/7480366 to your computer and use it in GitHub Desktop.
Boxstarter script for setting up Delphi development VM
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
try { | |
# Configure basic system settings | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showFileExtensions | |
# Standard packages to install | |
cinst 7zip | |
cinst beyondcompare | |
cinst githubforwindows | |
cinst PDFCreator | |
cinst procexp | |
cinst procmon | |
cinst slik.svn | |
cinst sumatrapdf | |
cinst tortoisesvn | |
cinst wingrep | |
#cinst fiddler4 | |
# Install all Windows updates | |
Install-WindowsUpdate -AcceptEula | |
# Create taskbar items | |
Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\cmd.exe" | |
Install-ChocolateyPinnedTaskBarItem "$env:comspec /c z:\repository-opto\bpide\bp.bat" | |
Write-ChocolateySuccess 'boxstarter.delphi' | |
} catch { | |
Write-ChocolateyFailure 'boxstarter.delphi' $($_.Exception.Message) | |
throw | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment