Last active
June 20, 2018 08:52
-
-
Save OldNo7/bfb727970c17bdf013c0bd50f150bfdc to your computer and use it in GitHub Desktop.
My setup of a dev box
This file contains 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
# To launch from powershell type the following coomand | |
# start http://boxstarter.org/package/url/?[The Raw URL for this GIST] | |
# Boxstarter options | |
$Boxstarter.RebootOk=$true # Allow reboots? | |
$Boxstarter.NoPassword=$false # Is this a machine with no login password? | |
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot | |
# Basic setup | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
#Enable-RemoteDesktop | |
Disable-InternetExplorerESC | |
Disable-UAC | |
Set-TaskbarSmall | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# Update Windows and reboot if necessary | |
Install-WindowsUpdate -AcceptEula | |
if (Test-PendingReboot) { Invoke-Reboot } | |
cinst beyondcompare | |
cinst sysinternals /InstallDir c:\tools | |
cinst NugetPackageExplorer | |
cinst TortoiseHg | |
cinst linqpad | |
cinst ilspy | |
cinst tortoisegit | |
#Browsers | |
cinst firefox | |
#Other essential tools | |
cinst inkscape | |
cinst imagemagick | |
cinst audacity | |
Install-ChocolateyPinnedTaskBarItem "$($Boxstarter.programFiles)\Mozilla Firefox\firefox.exe" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment