qxl-wddm-dod/qxldod/checkWin8Tools.bat
Vadim Rozenfeld 2db3021b96 fix VS 12 checking batch
(cherry picked from commit e4480e7d50)

Conflicts:
	qxldod/checkWin8Tools.bat
2015-02-18 21:06:57 +11:00

9 lines
309 B
Batchfile
Executable File

@echo off
reg query HKLM\Software\Microsoft\VisualStudio\12.0 /v InstallDir > nul 2>nul
if %ERRORLEVEL% EQU 0 exit /b 0
reg query HKLM\Software\Wow6432Node\Microsoft\VisualStudio\12.0 /v InstallDir > nul 2>nul
if %ERRORLEVEL% EQU 0 exit /b 0
echo ERROR building Win8 drivers: VS12 is not installed
exit /b 2