Skip to content

Instantly share code, notes, and snippets.

@danhively
Forked from sbussinger/boxstarter.desktop
Created January 2, 2014 20:43
Show Gist options
  • Select an option

  • Save danhively/8226448 to your computer and use it in GitHub Desktop.

Select an option

Save danhively/8226448 to your computer and use it in GitHub Desktop.
try {
# Configure basic system settings
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showFileExtensions
# Standard packages to install
cinst 7zip
cinst beyondcompare
cinst githubforwindows
cinst GoogleChrome
cinst haali-media-splitter
cinst ilspy
cinst isorecorder
cinst NuGet.CommandLine
cinst NugetPackageExplorer
cinst PDFCreator
cinst procexp
cinst procmon
cinst rufus.portable
cinst snoop
cinst sumatrapdf
cinst tortoisesvn
cinst wingrep
# Add Windows features
cinst Microsoft-Hyper-V-All -source windowsfeatures
# Install all Windows updates
Install-WindowsUpdate -AcceptEula
# Create taskbar items
Install-ChocolateyPinnedTaskBarItem "$($boxstarter.programfiles86)\Google\Chrome\Application\chrome.exe"
Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\cmd.exe"
Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\SnippingTool.exe"
Install-ChocolateyPinnedTaskBarItem "$env:userprofile\SkyDrive\Utilities\OptoCalc\OptoCalc.exe"
Install-ChocolateyPinnedTaskBarItem "$env:windir\system32\mstsc.exe"
Write-ChocolateySuccess 'boxstarter.desktop'
} catch {
Write-ChocolateyFailure 'boxstarter.desktop' $($_.Exception.Message)
throw
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment