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.

21 lines
358 B

  1. @if (%_ECHO%) EQU () echo off
  2. if /I (%1) EQU (on) goto On
  3. if /I (%1) EQU (off) goto Off
  4. :Usage
  5. echo icecap.bat [on^|off]
  6. echo.
  7. :Done
  8. echo ICEPICK_CMD is %ICEPICK_CMD%
  9. echo ICEPICK_OPTIONS is %ICEPICK_OPTIONS%
  10. goto :EOF
  11. :On
  12. set ICEPICK_CMD=%SDXROOT%\inetsrv\iis\iisrearc\icepick\icepick.exe
  13. goto Done
  14. :Off
  15. set ICEPICK_CMD=
  16. goto Done