mirror of https://github.com/tongzx/nt5src
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
21 lines
656 B
ECHO OFF
|
|
@echo -------------------------------------------------------------
|
|
ECHO Determine if everything passed (findstr for "STATUS:FAIL")
|
|
ECHO If anything is output, then there was a failure
|
|
|
|
@echo *************************************************************
|
|
@echo Failures:
|
|
findstr -i status:fail logs\*.log
|
|
@echo *************************************************************
|
|
|
|
ECHO Stopping IIS -- IIS should stop successfully
|
|
net stop iisadmin /y
|
|
|
|
@echo *************************************************************
|
|
@echo Should not be any memory leaks:
|
|
type c:\temp\denmem.log
|
|
@echo *************************************************************
|
|
|
|
|
|
|
|
|