qxl-wddm-dod/qxldod/checkWin8Tools.bat

8 lines
308 B
Batchfile
Raw Normal View History

2013-12-30 12:59:42 +01:00
@echo off
2014-08-18 15:14:54 +02:00
reg query HKLM\Software\Microsoft\VisualStudio\12.0 /v InstallDir > nul 2>nul
2013-12-30 12:59:42 +01:00
if %ERRORLEVEL% EQU 0 exit /b 0
2014-08-18 15:14:54 +02:00
reg query HKLM\Software\Wow6432Node\Microsoft\VisualStudio\12.0 /v InstallDir > nul 2>nul
2013-12-30 12:59:42 +01:00
if %ERRORLEVEL% EQU 0 exit /b 0
2015-01-05 11:30:55 +01:00
echo ERROR building Win8 drivers: VS12 is not installed
2013-12-30 12:59:42 +01:00
exit /b 2