Skip to content

Instantly share code, notes, and snippets.

@sbussinger
Last active December 28, 2015 09:39
Show Gist options
  • Save sbussinger/7480366 to your computer and use it in GitHub Desktop.
Save sbussinger/7480366 to your computer and use it in GitHub Desktop.
Boxstarter script for setting up Delphi development VM
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