fix VS 12 checking batch

(cherry picked from commit e4480e7d50)

Conflicts:
	qxldod/checkWin8Tools.bat
This commit is contained in:
Vadim Rozenfeld 2015-01-05 21:30:55 +11:00
parent 3d329228d5
commit 2db3021b96

View File

@ -1,16 +1,8 @@
@echo off @echo off
reg query "HKLM\Software\Microsoft\Windows Kits\WDK" /v WDKProductVersion >nul 2>nul reg query HKLM\Software\Microsoft\VisualStudio\12.0 /v InstallDir > nul 2>nul
if %ERRORLEVEL% EQU 0 goto checkVS12 if %ERRORLEVEL% EQU 0 exit /b 0
reg query "HKLM\Software\Wow6432Node\Microsoft\Windows Kits\WDK" /v WDKProductVersion > nul 2>nul reg query HKLM\Software\Wow6432Node\Microsoft\VisualStudio\12.0 /v InstallDir > nul 2>nul
if %ERRORLEVEL% EQU 0 goto checkVS12 if %ERRORLEVEL% EQU 0 exit /b 0
echo ERROR building Win8 drivers: Win8 WDK is not installed echo ERROR building Win8 drivers: VS12 is not installed
exit /b 1 exit /b 2
:checkVS12
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: VS11 is not installed
exit /b 2