To organize the configuration and setup of my typical development environment.
- One time setup of my developer machine --
Execute the following one-liner in an elevated powershell prompt
set-executionpolicy unrestricted;
iex ((new-object net.webclient).DownloadString('https://raw.github.com/maurodx/DevMachineSetup/master/Bootstrap/BootIt.ps1'))
- Initialize powershell profile --
NOTE: This is already included in the #1 above
set-executionpolicy unrestricted;
iex ((new-object net.webclient).DownloadString('https://raw.github.com/maurodx/DevMachineSetup/master/Bootstrap/initPsProfile.ps1'))