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.

23 lines
651 B

  1. REM Clean up the build directory
  2. rmdir /q /s %_NTPOSTBLD%\sacomponents\
  3. REM Build the binaries
  4. build -cZ
  5. if EXIST build.err goto BUILDERROR
  6. REM Copy the Terminal Services ActiveX control from the latest build
  7. REM The normal build will pick up this CAB file correctly, but this is for private builds only
  8. set WINDOWS_BIN_PATH=\\winbuilds\release\main\usa\latest.tst\x86fre\bin
  9. copy %WINDOWS_BIN_PATH%\msrdp.cab %_NtPostBld%
  10. if errorlevel 1 goto BUILDERROR
  11. REM Build sasetup.msi
  12. call %_NTPOSTBLD%\sacomponents\samsigen.cmd
  13. goto :EOF
  14. :BUILDERROR
  15. echo An error occured during the build process.. Build aborted
  16. goto :EOF
  17. :EOF