Leaked source code of windows server 2003
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
445 B

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