Last active
August 10, 2017 17:11
-
-
Save crmckenzie/a530b0102691820480910fefce855f14 to your computer and use it in GitHub Desktop.
BoxStarter
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
# BoxStarter script | |
#START http://boxstarter.org/package/nr/url?<raw url> | |
Set-ExplorerOptions -showHiddenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
Enable-RemoteDesktop | |
Move-LibraryDirectory "Personal" "$env:UserProfile\OneDrive\documents" | |
cinst 7zip | |
cinst chrome | |
cinst conemu | |
cinst fiddler4 | |
cinst git | |
cinst gitkraken | |
cinst linqpad4 | |
cinst notepadplusplus | |
cinst nuget.commandline | |
cinst nugetpackageexplorer | |
cinst origin | |
cinst poshgit | |
cinst rapidee | |
cinst resharper | |
cinst steam | |
cinst sysinternals | |
cinst tortoisegit | |
cinst visualstudiocode | |
cinst windirstat | |
if (Test-PendingReboot) { Invoke-Reboot } | |
mkdir "$($env:Home)\src" | |
pushd "$($env:Home)\src" | |
# Setup git config | |
git clone http://github.com/crmckenzie/career | |
. ./career/git/Configure-Git.ps1 | |
# Install default powershell profile | |
. ./career/windows-workstation/Install-Profile.ps1 | |
popd | |
#cinst Microsoft-Hyper-V-All -source windowsFeatures | |
#cinst IIS-WebServerRole -source windowsfeatures | |
#Install-WindowsUpdate -AcceptEula | |
write-host "You will need to install Visual Studio 2017 and Sql Server 2016 separately." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment