Overview
Windows Vista did not ship with a user interface to configure logging in the IIS Server Manager. This module was developed to provide missing functionality as well as provide an example of how to develop a UI module for IIS 7.0. While Windows Vista Service Pack 1 now includes a UI to configure logging, this source code still serves as a good example of how to develop a managed code UI module for IIS 7.0.
Manually Installing the Module from Source Code
- Download and compile the source code using Visual Studio SP1.
- Register the compiled assemblies in the GAC using gacutil.exe.
- Run notepad as Administrator
- Open %system%\inetsrv\config\administration.config
- Find the <moduleProviders> section and add the following element: <add name="VistaIisLogging" type="Microsoft.Web.Management.Iis.Server.LoggingModuleProvider, IisLoggingServer, Version=1.2.0.0, Culture=neutral, PublicKeyToken=74622615c9245f3f" />
- Find the <modules> section under the <location path"."> element and add the following element: <add name="VistaIisLogging" />
- Save the file and open Internet Information Services Manager (InetMgr.exe)
IMPORTANT: If you downloaded the previous version, be sure to change the version number of the module in your administration.config file.
Post questions or comments in the CodePlex project discussion:
http://www.codeplex.com/iis70loggingui/Thread/List.aspx
Features
Version 1.2.0.0 ( Released: Oct 3, 2008)
- Added source comments
- Added Help Documentation
- Provided binary only installation
- Upgraded solution and project files to Visual Studio 2008 SP1
Version 1.1.0.0 ( Released: Feb 1, 2007)
- Configure all settings for:
system.applicationHost/log/sites/siteDefaults/logFile
system.applicationHost/log/centralBinaryLogging
system.applicationHost/log/centralW3cLogging - Tooltips over controls display configuration display
Version 1.0.0.0 ( Released: Jan 29, 2007 )
- Configure all settings for:
system.applicationHost/log
system.webServer/httpLogging
system.applicationHost/log/sites/site/logFile
Benefits
Requirements
- Windows Vista or Windows 2008 Server
- IIS 7.0