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
- Host: GitHub
- URL: https://github.com/staxmanade/DevMachineSetup
- Owner: staxmanade
- Created: 2011-12-04T17:34:07.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2016-11-15T05:15:59.000Z (over 8 years ago)
- Last Synced: 2024-05-22T22:35:10.584Z (about 1 year ago)
- Language: PowerShell
- Homepage:
- Size: 42 KB
- Stars: 17
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
- jimsghstars - staxmanade/DevMachineSetup - My default developer Powershell profile (PowerShell)
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'))