Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
433 B

@echo off
if "%OS%"=="Windows_NT" goto nodel
%1\dev\tools\binw\x86\oink32.exe -v4 %2 | %1\dev\tools\binr\fgrep Fixup
if errorlevel 1 goto nodel
echo **************************************************************
echo ERROR! ERROR! ERROR!
echo YOU HAVE FIXUPS IN THE SHARED SEGMENT. DELETING %2.
echo **************************************************************
del %2
exit 1
:nodel
exit 0