windows-nt/Source/XPSP1/NT/sdktools/debuggers/imagehlp/setnt400.cmd
2020-09-26 16:20:57 +08:00

13 lines
311 B
Batchfile

@echo off
REM
REM This batch script will mark an image file so that it thinks it is running
REM on Windows NT 3.51
REM
if "%1" == "" goto usage
echo Marking %1 executable so it thinks it is running on Windows NT 3.51
imagecfg -w 0x05650004 %1 >nul
goto done
:usage
echo Usage: SETNT351 executableFileName
:done