An open API service indexing awesome lists of open source software.

https://github.com/staxmanade/DevMachineSetup

My default developer Powershell profile
https://github.com/staxmanade/DevMachineSetup

Last synced: 7 months ago
JSON representation

My default developer Powershell profile

Awesome Lists containing this project

README

        

> By: [@staxmanade](http://staxmanade.com)

Purpose for repo!
--

To organize the configuration and setup of my typical development environment.

1. 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/staxmanade/DevMachineSetup/master/Bootstrap/BootIt.ps1'))

2. 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/staxmanade/DevMachineSetup/master/Bootstrap/initPsProfile.ps1'))