Event Viewer Does Not Show IUSR_machinename Account Logon

ID: Q188903


The information in this article applies to:
  • Microsoft Internet Information Server version 4.0


SYMPTOMS

When troubleshooting Internet Information Server (IIS) permission problems, it is often useful to turn on Windows NT auditing for successful and failed logon/logoff events, as suggested by the following article in the Microsoft Knowledge Base:

Q185874 : How to Troubleshoot Permissions in IIS 4.0

However, sometimes you may not see the IUSR_machinename account being logged on to the system when using anonymous access.


CAUSE

This is a result of the account used for anonymous access being cached by IIS for a short period. If the account is re-used before this period has elapsed, the account is not logged on again, but instead the cached token is used and no event is shown in the event viewer.


WORKAROUND

To record each time the IUSR_machinename account is logged on and off, you can disable the IIS caching of the anonymous user account by setting the PasswordCacheTTL ASO property to zero.

The following sample code can be called from Visual Basic, ASP, and Windows Script Host with minimal changes in each environment and will affect all Web server instances:


   Dim oServer
   Set oServer = GetObject("IIS://LocalHost/W3SVC")
   oServer.PasswordCacheTTL = 0
   oServer.SetInfo
   Set oServer = Nothing 

Please note: There is a performance tradeoff while doing this. The procedure should be restricted to development and debugging only.

Additional query words:

Keywords :
Version : winnt:4.0
Platform : winnt
Issue type : kbprb


Last Reviewed: July 13, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.