Event Information | According to Microsoft :
Cause :
This event is logged when the Application Host Helper Service encountered an error trying to access the root history directory.
Resolution :
Check the configuration history directory path and permissions
To main IIS configuration history, the Application Host Helper Service requires that the history directory that you specified exists and that the Administrators Group has read and write permissions for it. The default configuration history directory is %SystemDrive%\inetpub\history .
To perform these procedures, you must have membership in Administrators , or you must have been delegated the appropriate authority.
To ensure that the history directory that is specified exists and has the correct permissions, follow these steps:
A. Back up the ApplicationHost.config file - Open an elevated Command Prompt window. Click Start , point to All Programs , click Accessories , right-click Command Prompt , and then click Run as administrator .
- At the command prompt, type cd %Windir%\system32\inetsrv .
- Type appcmd add backup backupName to backup the ApplicationHost.config file.
A directory with the backup name you specify will be created under the %windir%\system32\inetsrv\backup directory. If you do not specify a name, appcmd will generate a directory name automatically using the current date and time. B. Find the current history directory setting - At an elevated Command Prompt window, type cd %Windir%\system32\inetsrv\config .
- Type notepad ApplicationHost.config .
- In notepad, search for the configHistory section under the system.applicationHost section.
- Find the path attribute and read its value. The default is %SystemDrive%\inetpub\history .
- Make sure that the path is correctly spelled and has no errors.
- Save and close the ApplicationHost.config file.
C. Ensure that permissions for the history directory are correct - Click Start , click Computer , and navigate to the directory that you found in the path attribute of the configHistory section in the ApplicationHost.config file.
- Right-click the history directory and click Properties .
- Click the Security tab.
- Under Group or user names , click the System account. Under Permissions , make sure that the System account has full control.
- If the System account does not have full control, click Edit and select the Systems account again. Under Permissions , select the Allow check box to the right of Full Control .
- Perform the previous two steps for the Administrators account.
- Click OK to exit Properties .
Verify :
To verify the configuration of the AppHostSvc configuration history backup feature, you can do the following: - Use notepad to examine the current configHistory section settings in the ApplicationHost.config file.
- Use the Appcmd.exe command-line administration utility to view the configHistory section in the ApplicationHost.config file.
To perform these procedures, you must have membership in Administrators , or you must have been delegated the appropriate authority.
View the configHistory section by using notepad
To view the configHistory section by using notepad: - Open an elevated Command Prompt window. Click Start , point to All Programs , click Accessories , right-click Command Prompt , and then click Run as administrator .
- Type cd %Windir%\system32\inetsrv\config .
- Type notepad ApplicationHost.config .
- In notepad, search for the configHistory section under system.applicationHost .
View the configHistory section by using Appcmd.exe
To view the configHistory section by using Appcmd.exe: - Open an elevated Command Prompt window. Click Start , point to All Programs , click Accessories , right-click Command Prompt , and then click Run as administrator .
- Type cd %Windir%\system32\inetsrv .
- Type appcmd list config "Default Web Site" /section:configHistory /config:* . (This example uses the default Web site; replace the site name as necessary.)
|