Created
March 15, 2018 20:44
-
-
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
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
{ | |
"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