forked from ONLYOFFICE/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall-components.bat
More file actions
28 lines (21 loc) · 946 Bytes
/
Copy pathinstall-components.bat
File metadata and controls
28 lines (21 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
ECHO OFF
ECHO.
ECHO ----------------------------------------
ECHO Start Download Visual Studio Build Tools
ECHO ----------------------------------------
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://download.visualstudio.microsoft.com/download/pr/11503713/e64d79b40219aea618ce2fe10ebd5f0d/vs_BuildTools.exe', 'vs_BuildTools.exe')"
ECHO.
ECHO ----------------------------------------
ECHO End Download Visual Studio Build Tools
ECHO ----------------------------------------
ECHO.
ECHO ----------------------------------------
ECHO Start Install Visual Studio Build Tools
ECHO ----------------------------------------
vs_buildtools.exe --add Microsoft.VisualStudio.Workload.VCTools --includeRecommended --quiet --wait
ECHO.
ECHO ----------------------------------------
ECHO End Install Visual Studio Build Tools
ECHO ----------------------------------------
DEL "vs_buildtools.exe"
PAUSE