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.

25 lines
732 B

  1. REM
  2. REM Now let's update the version.h file
  3. REM
  4. pushd %AP_ROOT%\src\include
  5. set FORKNO=09
  6. echo Updating version for header to %FORKNO%.%BUILDNO%
  7. REM
  8. REM change version.h to be writeable so we can modify its contents
  9. REM
  10. attrib -r version.h
  11. type verhead.h > version.h
  12. echo #define VERSION "6.01.%FORKNO%.%BUILDNO%" >> version.h
  13. echo #define VER_FILEVERSION_STR "6.01.%FORKNO%.%BUILDNO%\0" >> version.h
  14. echo #define VER_FILEVERSION 6,01,%FORKNO%,%BUILDNO% >> version.h
  15. echo #define VER_PRODUCTVERSION_STR "6.01.%FORKNO%.%BUILDNO%\0" >> version.h
  16. echo #define VER_PRODUCTVERSION 6,01,%FORKNO%,%BUILDNO% >> version.h
  17. type vertail.h >> version.h
  18. popd