Skip to content

Instantly share code, notes, and snippets.

@matthewjberger
Created March 15, 2018 20:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save matthewjberger/d534dd9183949f88e8ea42ea5f38b4e1 to your computer and use it in GitHub Desktop.
Save matthewjberger/d534dd9183949f88e8ea42ea5f38b4e1 to your computer and use it in GitHub Desktop.
Beginning of a scoop installer for visual studio 2017 community edition. Uninstall doesn't work
{
"version": "15.6.2",
"url": "https://aka.ms/vs/15/release/vs_community.exe",
"homepage": "https://www.visualstudio.com/",
"checkver": {
"url": "https://docs.microsoft.com/en-us/visualstudio/releasenotes/vs2017-relnotes",
"re": "Visual Studio 2017 version (\\d+\\.\\d+\\.\\d+)"
},
"autoupdate": {
"url": "https://aka.ms/vs/15/release/vs_community.exe"
},
"hash": "daab30072e17de3bf196faba563c417aa0a38cd74ada008f5c16c7b2b88a60fa",
"installer": {
"file": "vs_community.exe",
"args": [
"--passive",
"--wait",
"--norestart"
],
"keep": "true"
},
"uninstaller": {
"file": "vs_community.exe",
"args": [
"uninstall",
"--passive"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment