mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
20 lines
574 B
Batchfile
Executable File
20 lines
574 B
Batchfile
Executable File
@echo off
|
|
|
|
setlocal
|
|
|
|
if X%1==X (echo usage: %~n0 VALUE >&2 & exit /b 1)
|
|
|
|
set RegKey="HKLM\SOFTWARE\Microsoft\Windows Kits\Installed Roots"
|
|
set RegVal="KitsRoot10"
|
|
reg query %RegKey% /v %RegVal% >nul 2>&1 || (echo Cannot find Windows Kit >&2 & exit /b 1)
|
|
for /f "tokens=2,*" %%i in ('reg query %RegKey% /v %RegVal% ^| findstr %RegVal%') do (
|
|
set KitRoot=%%j
|
|
)
|
|
|
|
set KitVer=10.0.10586.0
|
|
for /f "tokens=*" %%i in ('dir /ad/b "%KitRoot%Include\10.*"') do (
|
|
set KitVer=%%i
|
|
)
|
|
|
|
findstr /R /I "\<0*[Xx]*%1[Ll]*\>" "%KitRoot%Include\%KitVer%\shared\%~n0.h"
|