RE: Log File isapi.log Too Big

2001-03-02 Thread Samson, Lyndon [IT]
You can find out what processes have the file open using handleex from www.sysinternals.com. A top site for nt tools. -Original Message- From: Eli Segev [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 9:06 PM To: [EMAIL PROTECTED] Subject: Re: Log File isapi.log Too Big

RE: Log File isapi.log Too Big

2001-03-01 Thread Randy Layman
Sadly, no. You must stop IIS, remove the file, and restart IIS. Not to hard with a .bat file, however it causes outages in your availability. Batch file would be something like: net stop "World Wide Web Publishing Service" del isapi.log net start "World Wide Web Publishing Service"

Re: Log File isapi.log Too Big

2001-03-01 Thread Eli Segev
Randy Layman wrote: Sadly, no. You must stop IIS, remove the file, and restart IIS. Not to hard with a .bat file, however it causes outages in your availability. This does not work. Even if I stop IIS and Tomcat, I can't delete the log file. When I try, I get a sharing violation.