Last active
June 14, 2016 04:37
-
-
Save mirontoli/6130941 to your computer and use it in GitHub Desktop.
This script install the development tools I need in a Windows Server with SharePoint. Chocolatey: http://chocolatey.org/It must be run in cmd
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 Chocolatey | |
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex | |
# Install Tools | |
# choco install ulsviewer & | |
choco install GoogleChrome -y | |
choco install vim -y | |
choco install SharePointDesigner2013x64 -y | |
choco install ilspy -y | |
choco install fiddler4 -y | |
choco install visualstudiocode -y | |
# choco install sublimetext2 & | |
# cinst CAMLDesigner2013 & | |
# cinst msysgit & | |
# cinst nodejs & | |
# cinst sass & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment