Created
March 24, 2017 13:46
-
-
Save mrpullen/9a77375bdcfc8ec31691dfea59186fd5 to your computer and use it in GitHub Desktop.
a gist for a user with token api call via ajax
This file contains hidden or 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
| # Install Script Generated by: https://dhruvb14.github.io | |
| # Inspiration borrowed from http://blog.zerosharp.com/provisioning-a-new-development-machine-with-boxstarter/ | |
| # 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 | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| Install-WindowsUpdate -AcceptEula | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install NugetPackageExplorer | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install resharper | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install nodejs.install | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install VisualStudioCode | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install googlechrome | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install visualstudio2015enterprise | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install fiddler4 | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install notepadplusplus.install | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install windowsazurepowershell | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install GitHub | |
| if (Test-PendingReboot) { Invoke-Reboot } | |
| choco install visualstudio-github |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment