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.

21 lines
656 B

  1. ECHO OFF
  2. @echo -------------------------------------------------------------
  3. ECHO Determine if everything passed (findstr for "STATUS:FAIL")
  4. ECHO If anything is output, then there was a failure
  5. @echo *************************************************************
  6. @echo Failures:
  7. findstr -i status:fail logs\*.log
  8. @echo *************************************************************
  9. ECHO Stopping IIS -- IIS should stop successfully
  10. net stop iisadmin /y
  11. @echo *************************************************************
  12. @echo Should not be any memory leaks:
  13. type c:\temp\denmem.log
  14. @echo *************************************************************