I am a student
I want to test insall program for tast
I am a student
I want to test insall program for tast
I have an IIS 6 server that I want to move to IIS 7 server with a different name. I have more than one drive on the old server and need to move it to the new server. Some of the folders on the different drives have shares to my virtual directories. How can I move them all and without losing the share pointers? Also would I have to change my DNS entries to the new server or the Bindings? Thanks.
Hi,
I have the following html file
<!DOCTYPE html>
<html>
<body>
<form action="$action" method="post" target="_blank">
Name: <input type="text" name="fname"><br>
<input type="submit" value="Submit">
</form>
<p>Click on the submit button..".</p>
</body>
</html>
and I have native module based filter running on IIS
Sample code to reproduce the behavior is shown (extract from native module code)
virtual REQUEST_NOTIFICATION_STATUS
OnBeginRequest( IN IHttpContext * pHttpContext, IN IHttpEventProvider * pProvider ) {
char strAuthMethod[128];
strcpy(strAuthMethod,(pHttpContext->GetRequest()->GetHttpMethod()));
CUSTOMLOG("----INSIDE OnBeginRequest---- Authmethod: %s",strAuthMethod);
return RQ_NOTIFICATION_CONTINUE;
}
virtual REQUEST_NOTIFICATION_STATUS OnAuthenticateRequest( IN IHttpContext * pHttpContext, IN IAuthenticationProvider * pProvider )
{
CUSTOMLOG("----INSIDE AccessService Flow----");
pHttpContext->GetResponse()->SetStatus(200,"Completed");
return RQ_NOTIFICATION_CONTINUE;
}
If I access my html file and click on submit button I can see the following in my custom logs in IIS 8
----INSIDE OnBeginRequest---- Authmethod: GET
----INSIDE AccessService Flow----
----INSIDE OnBeginRequest---- Authmethod: POST
----INSIDE AccessService Flow----
----INSIDE OnBeginRequest---- Authmethod: POST (Getting called a second time!)
----INSIDE AccessService Flow----
However I do not see that the entry points are called a second time (when authmethod is POST) in IIS 7.
IIS 7 log is something as follows
----INSIDE OnBeginRequest---- Authmethod: GET
----INSIDE AccessService Flow----
----INSIDE OnBeginRequest---- Authmethod: POST
----INSIDE AccessService Flow----
Why is this change in behavior in IIS 8? We face problems as our entry point code gets called twice when we expect it to get called once for the POST method.
I have checked the IIS 8 server logs & also checked with the fiddler. They are showing a single POST only. Then why the entrypoints are called twice in IIS 8?
Did anyone experienced this behavior? Is this a bug in IIS 8? Any solutions to overcome this issue.
Regards,
George
IIS 8.0 with ARR and Windows server 2012
We use reverse proxy to rewrite the request to an external website. All rewrite rulres works besides one webpage with xml code only, BUT IT does not have HEADERS at all.
We forward https://mysite.com:85/webrequest?some=xml to http://55.55.55.55/webrequest?some=xml . The url is forwarded correctly to the reverse proxy, but the IIS ARR got invalid response.
Can it be because of missing headers on wepage http://55.55.55.55/webrequest?some=xml?
http://55.55.55.55/webrequest?some=xml can be accessed correctly by different browsers
Also, we checked everything, it accepts other similar webpages. Only this webpage without headers doesn't work.
Error:
Trace error:
Hi all,
How would you go about writing a customer rewrite provider using WCF? I've seen a similar post,http://forums.iis.net/t/1173084.aspx but there's not much to it. My guess is that you'd have to set up properties such as endpoints and something else to get it working within the web.config.
Ta
Hello,
I have a WCF service hosted on IIS that needs to shut itself down by stopping the website. Here is the code:
ManagementScope managementScope = new ManagementScope(@"\\" + serverName + @"\root\microsoftiisv2", connectionOptions); managementScope.Connect(); //Start/Stop website if (managementScope.IsConnected) { SelectQuery selectQuery = new SelectQuery(string.Format(ServiceControllerConstants.IISManagementSiteQuery, site)); //SelectQuery selectQuery = new SelectQuery("Select * From IIsWebServer Where Name = 'W3SVC/" + site + "'"); using (ManagementObjectSearcher managementObjectSearcher = new ManagementObjectSearcher(managementScope, selectQuery)) { foreach (ManagementObject managementObject in managementObjectSearcher.Get()) managementObject.InvokeMethod(state.ToString(), new object[0]); } //Start/Stop application pool //string objPath = "IISApplicationPool.Name='W3SVC/AppPools/" + websiteName + "'"; string objPath = string.Format(ServiceControllerConstants.IISManagementAppPoolQuery, websiteName); using (ManagementObject mc = new ManagementObject(objPath)) { mc.Scope = managementScope; mc.InvokeMethod(state.ToString(), new object[0]); } }
For this code to execute successfully, the account running the application pool needs to be in the administrators group of the machine. Is there a way to get this code to work without making the application pool account the admin? Thanks
Regards,
Shilpa
Hello,
My WSUS Server don't work anymore and there were many errors about IIS Service. That's why I wanted to reinstall these two roles. The uninstallation has been done successfully but I can't install IIS anymore. The ServerManager.log says:
1700: 2015-07-18 18:49:10.367 [CbsUIHandler] Error: -2147021879 : 1700: 2015-07-18 18:49:10.367 [CbsUIHandler] Terminate: 1700: 2015-07-18 18:49:10.632 [InstallationProgressPage] Vérification de l’installation... 1700: 2015-07-18 18:49:10.866 [CBS] ...done installing 'IIS-ManagementConsole IIS-RequestMonitor IIS-Metabase IIS-RequestFiltering IIS-WMICompatibility IIS-HttpCompressionStatic IIS-WindowsAuthentication IIS-HttpCompressionDynamic IIS-HttpLogging IIS-ISAPIFilter IIS-ISAPIExtensions IIS-StaticContent IIS-DefaultDocument IIS-DirectoryBrowsing IIS-HttpErrors IIS-LegacySnapIn IIS-NetFxExtensibility IIS-LegacyScripts IIS-ASPNET '. Status: -2147021879 (80070bc9) 1700: 2015-07-18 18:49:10.866 [Provider] Skipped configuration of 'Console de gestion IIS' because install operation failed. 1700: 2015-07-18 18:49:10.866 [Provider] Skipped configuration of 'Observateur de demandes' because install operation failed. 1700: 2015-07-18 18:49:10.866 [Provider] Skipped configuration of 'Compatibilité avec la métabase de données IIS 6' because install operation failed. 1700: 2015-07-18 18:49:10.866 [Provider] Skipped configuration of 'Filtrage des demandes' because install operation failed. 1700: 2015-07-18 18:49:10.866 [Provider] Skipped configuration of 'Compatibilité WMI d’IIS 6' because install operation failed. 1700: 2015-07-18 18:49:10.866 [Provider] Skipped configuration of 'Compression de contenu statique' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Authentification Windows' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Compression de contenu dynamique' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Journalisation HTTP' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Filtres ISAPI' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Extensions ISAPI' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Contenu statique' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Document par défaut' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Exploration de répertoire' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Erreurs HTTP' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Console de gestion IIS 6' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Extensibilité .NET' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'Outils de script IIS 6' because install operation failed. 1700: 2015-07-18 18:49:10.882 [Provider] Skipped configuration of 'ASP.NET' because install operation failed.
1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 175 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 158 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 179 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 169 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 180 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 172 1700: 2015-07-18 18:49:10.882 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 164 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 173 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 156 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 153 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 152 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 142 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 143 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 144 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 145 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 182 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 149 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 181 1700: 2015-07-18 18:49:10.897 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.913 [Provider] Error (Id=0) Sync Result - Success: False, RebootRequired: True, Id: 148 1700: 2015-07-18 18:49:10.913 [Provider] Error (Id=0) Sync Message - OperationKind: Install, MessageType: Error, MessageCode: -2147021879, Message: <null>, AdditionalMessage: Échec de l’opération demandée. Il est nécessaire de redémarrer le système pour restaurer les modifications apportées 1700: 2015-07-18 18:49:10.913 [InstallationProgressPage] Sync operation completed 1700: 2015-07-18 18:49:10.913 [InstallationProgressPage] Performing post install/uninstall discovery... 1700: 2015-07-18 18:49:10.913 [Provider] C:\Windows\system32\ServerManager\Cache\CbsUpdateState.bin does not exist. 1700: 2015-07-18 18:49:10.929 [CBS] IsCacheStillGood: False. 1700: 2015-07-18 18:49:19.603 [CBS] >>>GetUpdateInfo-------------------------------------------------- 1700: 2015-07-18 18:49:30.024 [CBS] Error (Id=0) Function: 'ReadUpdateInfo()->Package_EnumerateUpdates' failed: 80070bc9 (-2147021879) 1700: 2015-07-18 18:49:30.024 [CBS] <<<GetUpdateInfo-------------------------------------------------- 1700: 2015-07-18 18:49:30.289 [DISCOVERY] hr: -2147021879 -> reboot required. 1700: 2015-07-18 18:49:30.321 [InstallationProgressPage] About to load finish page... 1700: 2015-07-18 18:49:30.321 [InstallationFinishPage] Loading finish page 1700: 2015-07-18 18:49:30.321 [InstallationFinishPage] Finish page loaded 2896: 2015-07-20 08:19:14.393 [Provider] C:\Windows\system32\ServerManager\Cache\CbsUpdateState.bin does not exist. 2896: 2015-07-20 08:19:14.517 [CBS] IsCacheStillGood: False.
And the ISS7.log says:
[07/18/2015 10:29:10] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:10] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/applicationPools [07/18/2015 10:29:10] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:10] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/applicationPools [07/18/2015 10:29:10] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 10:29:10] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:10] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:10] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/listenerAdapters [07/18/2015 10:29:10] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:10] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/listenerAdapters [07/18/2015 10:29:10] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 10:29:10] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:11] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:11] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/log [07/18/2015 10:29:11] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:11] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/log [07/18/2015 10:29:11] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 10:29:11] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:11] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:11] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/sites [07/18/2015 10:29:11] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:11] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/sites [07/18/2015 10:29:11] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 10:29:11] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:11] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:11] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/webLimits [07/18/2015 10:29:11] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:11] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/webLimits [07/18/2015 10:29:11] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 10:29:11] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:11] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:11] "C:\Windows\System32\inetsrv\iissetup.exe" /install SharedLibraries [07/18/2015 10:29:11] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:11] Successfully added IIS_IUSRS ACE to DACL at %ProgramData%\Microsoft\Windows\WER\ReportQueue. [07/18/2015 10:29:11] NetFrameworkConfigurationKey key container already exists [07/18/2015 10:29:11] Set ACLs on NetFrameworkConfigurationKey [07/18/2015 10:29:11] iisWasKey key container already exists [07/18/2015 10:29:11] iisWasKey user key already exists [07/18/2015 10:29:11] iisConfigurationKey already exists [07/18/2015 10:29:11] < !!FAIL!! > Install of component SharedLibraries result=0x8007000d [07/18/2015 10:29:11] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 10:29:11] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:51] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:51] "C:\Windows\System32\inetsrv\iissetup.exe" /install ProcessModelLibraries [07/18/2015 10:29:51] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 10:29:51] Successfully updated IIS_IUSRS rights. [07/18/2015 10:29:51] Successfully created and populated IIS_IUSRS. [07/18/2015 10:29:51] Install of component ProcessModelLibraries succeeded! [07/18/2015 10:29:51] Success! [07/18/2015 10:29:51] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 10:29:51] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 10:29:51] "C:\Windows\System32\inetsrv\iissetup.exe" /install ProcessModel [07/18/2015 10:29:51] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:18] < WARNING! > SERVICE_CONTROLLER::StartNamedService APPHOSTSVC result=0x8007041d [07/18/2015 18:48:18] Install of component ProcessModel succeeded! [07/18/2015 18:48:18] Success! [07/18/2015 18:48:18] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:18] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:18] "C:\Windows\System32\inetsrv\iissetup.exe" /install CoreWebEngine [07/18/2015 18:48:18] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:18] Install of component CoreWebEngine succeeded! [07/18/2015 18:48:18] Success! [07/18/2015 18:48:18] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:18] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:18] "C:\Windows\System32\inetsrv\iissetup.exe" /install W3SVC [07/18/2015 18:48:18] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:18] < !!FAIL!! > Install of component W3SVC result=0x8007000d [07/18/2015 18:48:18] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:18] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:18] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:18] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/access [07/18/2015 18:48:18] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:18] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/access [07/18/2015 18:48:18] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:18] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:18] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:18] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/handlers [07/18/2015 18:48:18] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:18] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/handlers [07/18/2015 18:48:18] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:18] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:18] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:18] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpCompression [07/18/2015 18:48:18] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:18] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpCompression [07/18/2015 18:48:18] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:18] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:19] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:19] "C:\Windows\System32\inetsrv\iissetup.exe" /install Metabase [07/18/2015 18:48:19] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:19] Successfully updated IIS_IUSRS rights. [07/18/2015 18:48:19] Successfully populated IIS_IUSRS. [07/18/2015 18:48:19] Successfully set IISADMIN install state. [07/18/2015 18:48:19] Successfully removed old metabase files. [07/18/2015 18:48:20] Successfully started IISADMIN. [07/18/2015 18:48:20] < !!FAIL!! > METABASE_UTIL::InstallIisAdminMetabaseEntries result=0x8007000d [07/18/2015 18:48:25] Successfully stopped IISADMIN. [07/18/2015 18:48:25] < WARNING! > METABASE_UTIL::InstallLegacySnapInMetabaseEntries result=0x8007000d [07/18/2015 18:48:25] Successfully started IISADMIN. [07/18/2015 18:48:25] < !!FAIL!! > Install of component Metabase result=0x8007000d [07/18/2015 18:48:25] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:25] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:25] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:25] "C:\Windows\SysWOW64\inetsrv\iissetup.exe" /launch_servicing C:\Windows\SysWOW64\regsvr32.exe /s C:\Windows\SysWOW64\inetsrv\iisext.dll [07/18/2015 18:48:25] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:25] Launching command C:\Windows\SysWOW64\regsvr32.exe, with params C:\Windows\SysWOW64\regsvr32.exe /s C:\Windows\SysWOW64\inetsrv\iisext.dll [07/18/2015 18:48:25] LaunchCommand Succeeded [07/18/2015 18:48:25] Success! [07/18/2015 18:48:25] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install ADSICompatibility [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component ADSICompatibility succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch_servicing C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\iisext.dll [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\regsvr32.exe, with params C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\iisext.dll [07/18/2015 18:48:26] LaunchCommand Succeeded [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install WMICompatibility [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component WMICompatibility succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install LegacyScripts [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component LegacyScripts succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install CachingBaseBinaries [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component CachingBaseBinaries succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install CachingBase [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component CachingBase succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:UriCacheModule -image:C:\Windows\System32\inetsrv\cachuri.dll -add:false -lock:true [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:UriCacheModule -image:%windir%\System32\inetsrv\cachuri.dll -add:false -lock:true [07/18/2015 18:48:26] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:FileCacheModule -image:C:\Windows\System32\inetsrv\cachfile.dll -add:false -lock:true [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:FileCacheModule -image:%windir%\System32\inetsrv\cachfile.dll -add:false -lock:true [07/18/2015 18:48:26] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:TokenCacheModule -image:C:\Windows\System32\inetsrv\cachtokn.dll -add:false -lock:true [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:TokenCacheModule -image:%windir%\System32\inetsrv\cachtokn.dll -add:false -lock:true [07/18/2015 18:48:26] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install Caching [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component Caching succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpCacheBinaries [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component HttpCacheBinaries succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpCache [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component HttpCache succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/caching [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/caching [07/18/2015 18:48:26] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:HttpCacheModule -image:C:\Windows\System32\inetsrv\cachhttp.dll -lock:true [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:HttpCacheModule -image:%windir%\System32\inetsrv\cachhttp.dll -lock:true [07/18/2015 18:48:26] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /install CompressionBinaries [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Install of component CompressionBinaries succeeded! [07/18/2015 18:48:26] Success! [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:26] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:26] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpCompression [07/18/2015 18:48:26] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:26] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpCompression [07/18/2015 18:48:26] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:26] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpCompressionDynamicBinaries [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Install of component HttpCompressionDynamicBinaries succeeded! [07/18/2015 18:48:27] Success! [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:DynamicCompressionModule -image:C:\Windows\System32\inetsrv\compdyn.dll -lock:true [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:DynamicCompressionModule -image:%windir%\System32\inetsrv\compdyn.dll -lock:true [07/18/2015 18:48:27] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpCompressionDynamic [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] < !!FAIL!! > Install of component HttpCompressionDynamic result=0x8007000d [07/18/2015 18:48:27] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpCompressionStaticBinaries [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Install of component HttpCompressionStaticBinaries succeeded! [07/18/2015 18:48:27] Success! [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:StaticCompressionModule -image:C:\Windows\System32\inetsrv\compstat.dll -lock:true [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:StaticCompressionModule -image:%windir%\System32\inetsrv\compstat.dll -lock:true [07/18/2015 18:48:27] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpCompressionStatic [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Setup did not create the C:\inetpub\temp\IIS Temporary Compressed Files directory because it all ready existed [07/18/2015 18:48:27] < !!FAIL!! > Install of component HttpCompressionStatic result=0x8007000d [07/18/2015 18:48:27] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install DefaultDocumentBinaries [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Install of component DefaultDocumentBinaries succeeded! [07/18/2015 18:48:27] Success! [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/defaultDocument [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/defaultDocument [07/18/2015 18:48:27] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:DefaultDocumentModule -image:C:\Windows\System32\inetsrv\defdoc.dll -lock:true [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:DefaultDocumentModule -image:%windir%\System32\inetsrv\defdoc.dll -lock:true [07/18/2015 18:48:27] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install DefaultDocument [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] < !!FAIL!! > Install of component DefaultDocument result=0x8007000d [07/18/2015 18:48:27] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install DirectoryBrowseBinaries [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Install of component DirectoryBrowseBinaries succeeded! [07/18/2015 18:48:27] Success! [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/directoryBrowse [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/directoryBrowse [07/18/2015 18:48:27] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:DirectoryListingModule -image:C:\Windows\System32\inetsrv\dirlist.dll -lock:true [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:DirectoryListingModule -image:%windir%\System32\inetsrv\dirlist.dll -lock:true [07/18/2015 18:48:27] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install DirectoryBrowse [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] < !!FAIL!! > Install of component DirectoryBrowse result=0x8007000d [07/18/2015 18:48:27] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpProtocolBinaries [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] Install of component HttpProtocolBinaries succeeded! [07/18/2015 18:48:27] Success! [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:27] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:27] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpProtocol [07/18/2015 18:48:27] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:27] < !!FAIL!! > Install of component HttpProtocol result=0x8007000d [07/18/2015 18:48:27] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:27] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpProtocol [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpProtocol [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:ProtocolSupportModule -image:C:\Windows\System32\inetsrv\protsup.dll -lock:true [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:ProtocolSupportModule -image:%windir%\System32\inetsrv\protsup.dll -lock:true [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install StaticContentBinaries [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Install of component StaticContentBinaries succeeded! [07/18/2015 18:48:28] Success! [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/staticContent [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/staticContent [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:StaticFileModule -image:C:\Windows\System32\inetsrv\static.dll -lock:true [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:StaticFileModule -image:%windir%\System32\inetsrv\static.dll -lock:true [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install StaticContent [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] < !!FAIL!! > Install of component StaticContent result=0x8007000d [07/18/2015 18:48:28] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install AnonymousAuthenticationBinaries [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Install of component AnonymousAuthenticationBinaries succeeded! [07/18/2015 18:48:28] Success! [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install AnonymousAuthentication [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Install of component AnonymousAuthentication succeeded! [07/18/2015 18:48:28] Success! [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/authentication/anonymousAuthentication [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/authentication/anonymousAuthentication [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:AnonymousAuthenticationModule -image:C:\Windows\System32\inetsrv\authanon.dll -lock:true [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:AnonymousAuthenticationModule -image:%windir%\System32\inetsrv\authanon.dll -lock:true [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install WindowsAuthenticationBinaries [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Install of component WindowsAuthenticationBinaries succeeded! [07/18/2015 18:48:28] Success! [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install WindowsAuthentication [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Install of component WindowsAuthentication succeeded! [07/18/2015 18:48:28] Success! [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/authentication/windowsAuthentication [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/authentication/windowsAuthentication [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:WindowsAuthenticationModule -image:C:\Windows\System32\inetsrv\authsspi.dll -lock:true [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:WindowsAuthenticationModule -image:%windir%\System32\inetsrv\authsspi.dll -lock:true [07/18/2015 18:48:28] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /install RequestFilteringBinaries [07/18/2015 18:48:28] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:28] Install of component RequestFilteringBinaries succeeded! [07/18/2015 18:48:28] Success! [07/18/2015 18:48:28] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:28] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:28] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:RequestFilteringModule -image:C:\Windows\System32\inetsrv\modrqflt.dll -lock:true [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:RequestFilteringModule -image:%windir%\System32\inetsrv\modrqflt.dll -lock:true [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install RequestFiltering [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component RequestFiltering succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/requestFiltering [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/security/requestFiltering [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpErrorsBinaries [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component HttpErrorsBinaries succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpErrors [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component HttpErrors succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpErrors [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpErrors [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:CustomErrorModule -image:C:\Windows\System32\inetsrv\custerr.dll -lock:true [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:CustomErrorModule -image:%windir%\System32\inetsrv\custerr.dll -lock:true [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install HttpLoggingBinaries [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component HttpLoggingBinaries succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install HTTPLogging [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component HttpLogging succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpLogging [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/httpLogging [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/log [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.applicationHost/log [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:HttpLoggingModule -image:C:\Windows\System32\inetsrv\loghttp.dll -lock:true [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:HttpLoggingModule -image:%windir%\System32\inetsrv\loghttp.dll -lock:true [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install RequestMonitorBinaries [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component RequestMonitorBinaries succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install RequestMonitor [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component RequestMonitor succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:RequestMonitorModule -image:C:\Windows\System32\inetsrv\iisreqs.dll -add:false -lock:true [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:RequestMonitorModule -image:%windir%\System32\inetsrv\iisreqs.dll -add:false -lock:true [07/18/2015 18:48:29] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /install ISAPIExtensionsBinaries [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Install of component ISAPIExtensionsBinaries succeeded! [07/18/2015 18:48:29] Success! [07/18/2015 18:48:29] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:29] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:29] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:IsapiModule -image:C:\Windows\System32\inetsrv\isapi.dll -lock:true [07/18/2015 18:48:29] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:29] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:IsapiModule -image:%windir%\System32\inetsrv\isapi.dll -lock:true [07/18/2015 18:48:30] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /install ISAPIExtensions [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] < !!FAIL!! > Install of component ISAPIExtensions result=0x8007000d [07/18/2015 18:48:30] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /install ISAPIFilterBinaries [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Install of component ISAPIFilterBinaries succeeded! [07/18/2015 18:48:30] Success! [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /install ISAPIFilter [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Install of component ISAPIFilter succeeded! [07/18/2015 18:48:30] Success! [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:IsapiFilterModule -image:C:\Windows\System32\inetsrv\filter.dll -lock:true [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:IsapiFilterModule -image:%windir%\System32\inetsrv\filter.dll -lock:true [07/18/2015 18:48:30] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/isapiFilters [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe reset config -section:system.webServer/isapiFilters [07/18/2015 18:48:30] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe clear config -section:system.webServer/isapiFilters [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe clear config -section:system.webServer/isapiFilters [07/18/2015 18:48:30] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /install ManagementConsole [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] < !!FAIL!! > Install of component ManagementConsole result=0x8007000d [07/18/2015 18:48:30] < !!FAIL!! > COMPONENT::ExecuteCommand result=0x8007000d [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /install LegacySnapin [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Install of component LegacySnapin succeeded! [07/18/2015 18:48:30] Success! [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch_servicing C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\inetmgr.dll [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\regsvr32.exe, with params C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\inetmgr.dll [07/18/2015 18:48:30] LaunchCommand Succeeded [07/18/2015 18:48:30] Success! [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch_servicing C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\certobj.dll [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\regsvr32.exe, with params C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\certobj.dll [07/18/2015 18:48:30] LaunchCommand Succeeded [07/18/2015 18:48:30] Success! [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch_servicing C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\logui.ocx [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\regsvr32.exe, with params C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\logui.ocx [07/18/2015 18:48:30] < !!FAIL!! > LaunchCommand result=0x80070005 [07/18/2015 18:48:30] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:30] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:30] "C:\Windows\System32\inetsrv\iissetup.exe" /launch_servicing C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\cnfgprts.ocx [07/18/2015 18:48:30] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:30] Launching command C:\Windows\System32\regsvr32.exe, with params C:\Windows\System32\regsvr32.exe /s C:\Windows\System32\inetsrv\cnfgprts.ocx [07/18/2015 18:48:31] LaunchCommand Succeeded [07/18/2015 18:48:31] Success! [07/18/2015 18:48:31] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:32] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:32] "C:\Windows\System32\inetsrv\aspnetca.exe" /install /basic 2.0.50727.0 [07/18/2015 18:48:37] Installation success [07/18/2015 18:48:37] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:38] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:38] "C:\Windows\System32\inetsrv\iissetup.exe" /install NetFxEnvironment [07/18/2015 18:48:38] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:38] Install of component NetFxEnvironment succeeded! [07/18/2015 18:48:38] Success! [07/18/2015 18:48:38] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:38] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:38] "C:\Windows\SysWOW64\inetsrv\aspnetca.exe" /install /basic 2.0.50727.0 [07/18/2015 18:48:45] Installation success [07/18/2015 18:48:45] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:45] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:45] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe install module -name:ConfigurationValidationModule -image:C:\Windows\System32\inetsrv\validcfg.dll -lock:true [07/18/2015 18:48:45] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:45] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe install module -name:ConfigurationValidationModule -image:%windir%\System32\inetsrv\validcfg.dll -lock:true [07/18/2015 18:48:45] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:45] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:45] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:45] "C:\Windows\System32\inetsrv\aspnetca.exe" /install /managedextensibility 2.0.50727.0 [07/18/2015 18:48:45] < !!FAIL!! > GetConfigSection(CS_GLOBAL_MODULES_SECTION, CS_ROOTWEB_LEVEL_CONFIG) result=0x8007000d [07/18/2015 18:48:45] < !!FAIL!! > WriteManagedExtensibilityConfiguration() result=0x8007000d [07/18/2015 18:48:45] < !!FAIL!! > Installation failure, result=0x8007000d [07/18/2015 18:48:45] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:49] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:49] "C:\Windows\System32\inetsrv\iissetup.exe" /install NetFxExtensibility [07/18/2015 18:48:49] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:49] Install of component NetFxExtensibility succeeded! [07/18/2015 18:48:49] Success! [07/18/2015 18:48:49] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:49] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:49] "C:\Windows\SysWOW64\inetsrv\aspnetca.exe" /install /managedextensibility 2.0.50727.0 [07/18/2015 18:48:49] < !!FAIL!! > GetConfigSection(CS_GLOBAL_MODULES_SECTION, CS_ROOTWEB_LEVEL_CONFIG) result=0x8007000d [07/18/2015 18:48:49] < !!FAIL!! > WriteManagedExtensibilityConfiguration() result=0x8007000d [07/18/2015 18:48:49] < !!FAIL!! > Installation failure, result=0x8007000d [07/18/2015 18:48:49] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:52] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:52] "C:\Windows\System32\inetsrv\aspnetca.exe" /install /fullaspnet 2.0.50727.0 [07/18/2015 18:48:52] < !!FAIL!! > GetConfigSection(CS_APPLICATION_POOLS_SECTION, CS_ROOTWEB_LEVEL_CONFIG) result=0x8007000d [07/18/2015 18:48:52] < !!FAIL!! > WriteFullASPNETConfiguration() result=0x8007000d [07/18/2015 18:48:52] < !!FAIL!! > Installation failure, result=0x8007000d [07/18/2015 18:48:52] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:52] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:52] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe unlock config -section:system.webServer/handlers [07/18/2015 18:48:52] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:52] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe unlock config -section:system.webServer/handlers [07/18/2015 18:48:52] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:52] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:52] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:52] "C:\Windows\System32\inetsrv\iissetup.exe" /launch C:\Windows\System32\inetsrv\appcmd.exe unlock config -section:system.webServer/modules [07/18/2015 18:48:52] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:52] Launching command C:\Windows\System32\inetsrv\appcmd.exe, with params C:\Windows\System32\inetsrv\appcmd.exe unlock config -section:system.webServer/modules [07/18/2015 18:48:52] < !!FAIL!! > LaunchCommand result=0x8007000d [07/18/2015 18:48:52] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:52] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:52] "C:\Windows\System32\inetsrv\iissetup.exe" /install ASPNET [07/18/2015 18:48:52] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:52] Install of component ASPNET succeeded! [07/18/2015 18:48:52] Success! [07/18/2015 18:48:52] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:52] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:52] "C:\Windows\SysWOW64\inetsrv\aspnetca.exe" /install /fullaspnet 2.0.50727.0 [07/18/2015 18:48:52] < !!FAIL!! > GetConfigSection(CS_APPLICATION_POOLS_SECTION, CS_ROOTWEB_LEVEL_CONFIG) result=0x8007000d [07/18/2015 18:48:52] < !!FAIL!! > WriteFullASPNETConfiguration() result=0x8007000d [07/18/2015 18:48:52] < !!FAIL!! > Installation failure, result=0x8007000d [07/18/2015 18:48:52] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:53] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:53] "C:\Windows\System32\inetsrv\iissetup.exe" /install PowerShellProvider [07/18/2015 18:48:53] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:53] Install of component PowerShellProvider succeeded! [07/18/2015 18:48:53] Success! [07/18/2015 18:48:53] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:53] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:53] "C:\Windows\System32\inetsrv\iissetup.exe" /install WASConfigurationAPI [07/18/2015 18:48:53] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:53] Install of component WASConfigurationAPI succeeded! [07/18/2015 18:48:53] Success! [07/18/2015 18:48:53] [ End of IIS 7.0 Component Based Setup ] [07/18/2015 18:48:53] [ ***** IIS 7.0 Component Based Setup ***** ] [07/18/2015 18:48:53] "C:\Windows\System32\inetsrv\iissetup.exe" /firewall W3SVC [07/18/2015 18:48:53] < WARNING! > Failed to detect if config redirection is enabled. result=0x8007000d.Assuming config is not redirected and continuing. [07/18/2015 18:48:53] W3SVC firewall rule '@%windir%\system32\inetsrv\iisres.dll,-30501' successfully enabled [07/18/2015 18:48:53] W3SVC firewall rule '@%windir%\system32\inetsrv\iisres.dll,-30503' successfully enabled [07/18/2015 18:48:53] Install firewall rules of component W3SVC succeeded! [07/18/2015 18:48:53] Success!
I try to replace machine.config from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config but the same erros appears.
I try to run Process_Monitor in order to check the ACCESS_DENIED and if there is any rights issue, I found three entries about TrustedtInstaller.exe:
Time of Day Process Name PID Operation Path Result Detail 09:12:32 730435 TrustedInstaller.exe 2252 CreateFile C:\Windows\System32\inetsrv\config\redirection.config ACCESS DENIED Desired Access: Generic Read/Write, Delete Child, Delete, Write DAC, Write Owner, Access System Security, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Open For Backup, Attributes: N, ShareMode: Read, Write, Delete, AllocationSize: n/a, Impersonating: AUTORITE NT\Système 09:12:32 1404839 TrustedInstaller.exe 2252 CreateFile C:\Windows\System32\inetsrv\config\administration.config ACCESS DENIED Desired Access: Generic Read/Write, Delete Child, Delete, Write DAC, Write Owner, Access System Security, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Open For Backup, Attributes: N, ShareMode: Read, Write, Delete, AllocationSize: n/a, Impersonating: AUTORITE NT\Système 09:12:32 2026650 TrustedInstaller.exe 2252 CreateFile C:\Windows\System32\inetsrv\config\applicationHost.config ACCESS DENIED Desired Access: Generic Read/Write, Delete Child, Delete, Write DAC, Write Owner, Access System Security, Disposition: Open, Options: Synchronous IO Non-Alert, Non-Directory File, Open For Backup, Attributes: N, ShareMode: Read, Write, Delete, AllocationSize: n/a, Impersonating: AUTORITE NT\Système
Nevertheless the right's directory C:\Windows\System32\inetsrv\config has been set correctly: Full control on TryustedInstaller and system user.
I don't know what to do, could you help me please ?
Thanks in advance for your support
Hello
I am use RM for deploy app. When I run thecommands IISConfig.exe -StopWebSite -sn "Default Web Site" duration about 30 sec.
Process
Monitorshows thatgoes TCP Reconnect -> 188.43.74.18:httpexternal address.
What For? Who faced?
Hi gurus,
I have a third-party web application that works fine with HTTP on IIS 7.0 - Windows Server 2008 R2 SP1
I have created a self-signed certificate, added the binding for port 443, I checkedRequire SSL and "Ignore client cert" is chosen.
I added/changed access permissions on the virtual folder many times, I even added Everyone on it.
I also changed the Identity on the DefaultApplicationPool fromApplicationPoolIdentity to NetworkService.
Each time I change settings, I do iisreset.
Now I get "HTTP 403 Forbidden" each time I request the application.
What else I need to check and fix.
Please HEEEEEEEEELP!
thanks in advance.
I'm running a CakePHP website as a virtual directory under IIS 8.5, using the FastCGI handler for PHP. I'm using the RewriteModule to do the CakePHP rewriting in the virtual directory, which mostly works but there's a beheviour I just don't understand.
If I browse to:
http://mylocalsite/VirtualDirectory/my_things/something
all is fine, the 'something' action of the 'my_things' controller is executed. If I then modify the URL to (for example):
http://mylocalsite/VIRTUALDirectory/some/path
I get a CakePHP error, "VIRTUALDirectoryController could not be found". If I then restart the website in IIS and try again the page mostly loads fine, although sometimes I need to 'Stop' then 'Start'.
I tried using IIS's "Enforce lowercase URLs" rule to force URLs to the same case, this had no effect.
Can anyone help me understand this, and get rid of the weird behaviour?
Log file
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '23335'
DownloadManager Information: 0 : Number of bytes after possible decompression: '77961'
DownloadManager Warning: 0 : Error getting last-modified header, error code: 12150
DownloadManager Warning: 0 : HttpQueryInfoWithRetry for HTTP_QUERY_LAST_MODIFIED failed.
DownloadManager Information: 0 : Ratings file loaded successfully
DownloadManager Information: 0 : Adding product 'Joomla'
DownloadManager Information: 0 : Setting current install to 1
DownloadManager Information: 0 : Starting install sequence
DownloadManager Information: 0 : Downloading file 'https://bitbucket.org/4atg/joomla-wag/src/e6b0c504f8dc38505fc00397bdce906b2a3dad3f/Joomla_3.4.1-Stable-Full_Package-WebPI.zip' to: C:\Users\Eugene\AppData\Local\Temp\tmpB6B3.tmp
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '1'
DownloadManager Information: 0 : Number of bytes after possible decompression: '57215'
DownloadManager Information: 0 : Moving downloaded file 'C:\Users\Eugene\AppData\Local\Temp\tmpB6B3.tmp' to: C:\Users\Eugene\AppData\Local\Microsoft\Web Platform Installer\installers\Joomla\9BD4F2D52A680FB3C901D66C3F64DA05C350614B\Joomla_3.4.1-Stable-Full_Package-WebPI.zip
DownloadManager Error: 0 : Signature verification failed on downloaded file. URL:
https://bitbucket.org/4atg/joomla-wag/src/e6b0c504f8dc38505fc00397bdce906b2a3dad3f/Joomla_3.4.1-Stable-Full_Package-WebPI.zip. File location: C:\Users\Eugene\AppData\Local\Microsoft\Web Platform Installer\installers\Joomla\9BD4F2D52A680FB3C901D66C3F64DA05C350614B\Joomla_3.4.1-Stable-Full_Package-WebPI.zip.
File size: 55 kb
DownloadManager Information: 0 : Product Joomla! done install completed
DownloadManager Information: 0 : Increasing current install to 2
DownloadManager Information: 0 : Product: Joomla, Install Status: InstallCompleted-Failure, Install Time: 00:00:00
Hi experts,
I have a problem on Non-www to www url redirect multi language websites.
for example : I want to redirect domain.jp to www.domain.jp , domain.com towww.domain.com , domain.co.au to www.domain.co.au
Please suggest how to do this ?
Many questions here are of pretty poor quality, people provide not even the most basic information with their problem which could help solving it.
So recently I started work on a small PowerShell script that should help solving IIS configuration problems.
It's a single file that people can download and run on their server against a local web site.
It has basically two purposes:
1. Providing information about the static configuration of a server or a site, so people here in the forum upon seeing it can make helpful suggestions on how to fix a problem.
2. Diagnosing a failed request. I do this by running a request and then trying to get the sub-status code from the detailed error page or from the logs and then display more information about the particular problem.
For example, in case of a 401.3 it displays the NTFS ACL of the resource and suggests changes.
IIS detailed error pages do already provide helpful information, but the script can also show the current configuration that may be responsible for the problem and suggests PowerShell code to fix it or maybe fix it itself.
So far I'm covering just a few things but there are many more problems I like to add to the script.
So the question for the very active people here, what are the most common problems that you would like such a script to solve?
The script is at
https://github.com/hahndorf/Test-WebSite
and you can either reply here or use Git Hub issues directly.
Peter
Hi IIS experts,
I have a nagging issue for the past week. Been trying this for the past 1 week to no avail.
Here's the problem:
I developed a simple web application for our intranet and deployed onto the server IIS. WebApp is using Windows Authentication with impersonation. I even move the NTLM provider on top of the Kerberos one. AppPool is running on Network Service with integrated mode. Folder permission given to all users under my domain, basically everyone can access if they are windows authenticated user.
My application will perform the authorization within. Here is how I set up my authorization.
All users have access to the root. Within the root folder, there are sub folders restricted to different roles.
E.g. In Root -> Admin folder, inside the Admin folder I have a web.config to restrict access.
<allow roles="Admin">
<deny users="*">
All users will be denied access to the admin folder, only users with the Admin role can access the content/forms in this folder.
Now here come's the issue, I have no problem accessing the resource/web form if I have the correct role in place. The issue comes when I attempt to access the resource when I do not have that role. The browser will keep prompting me for credentials 3 times before throwing me the 401 error page. My expected output should be the 401 error page immediately without the unnecessary prompts for credentials.
I suspect it to be some IIS settings issues or folder level permission settings. There is no issue in displaying and accessing web forms when given the correct roles. I just don't want to have the persistent prompts and just direct me to the 401 error page immediately. That would solve my problem, any experts able to tell me what I am doing wrong for the IIS settings?
Your kind help is greatly appreciated. Thanks.
I am getting 404 error while calling .NET controller function from ajax call.May be there is some configuration problem in IIS server.
Is it possible to configure IIS to never return a 304 for a particular URL? I have a validate route in my MVC app (called via Ajax, returns a boolean), that is returning 304s when I really want it to get fresh data.
Has anyone tried using the URL Rewrite Module with Magento. I currently have Magento working with IIS7 and the Helicon ISAPI_Rewrite Lite but have not been able to make the URL Rewrite Module work.
Hi IIS experts,
I have a nagging issue for the past week. Been trying this for the past 1 week to no avail.
Here's the problem:
I developed a simple web application for our intranet and deployed onto the server IIS. WebApp is using Windows Authentication with impersonation. I even move the NTLM provider on top of the Kerberos one. AppPool is running on Network Service with integrated mode. Folder permission given to all users under my domain, basically everyone can access if they are windows authenticated user.
My application will perform the authorization within. Here is how I set up my authorization.
All users have access to the root. Within the root folder, there are sub folders restricted to different roles.
E.g. In Root -> Admin folder, inside the Admin folder I have a web.config to restrict access.
<allow roles="Admin">
<deny users="*">
All users will be denied access to the admin folder, only users with the Admin role can access the content/forms in this folder.
Now here come's the issue, I have no problem accessing the resource/web form if I have the correct role in place. The issue comes when I attempt to access the resource when I do not have that role. The browser will keep prompting me for credentials 3 times before throwing me the 401 error page. My expected output should be the 401 error page immediately without the unnecessary prompts for credentials.
I suspect it to be some IIS settings issues or folder level permission settings. There is no issue in displaying and accessing web forms when given the correct roles. I just don't want to have the persistent prompts and just direct me to the 401 error page immediately. That would solve my problem, any experts able to tell me what I am doing wrong for the IIS settings?
Your kind help is greatly appreciated. Thanks.
I'm using the Microsoft.Web.Administration API to delete a virtual directory:
$mgr = new ServerManager() $site = $mgr.Sites | Where-Object { $_.Name -eq 'MySite' } $rootApp = $site.Applications | Where-Object { $_.Path -eq '/' } $vdir = $rootApp.VirtualDirectories | Where-Object { $_.Path -eq 'MyVDir' } $rootApp.VirtualDirectories.Remove($vdir) $mgr.CommitChanges()
However, if someone has configured custom settings for that virtual directory, they remain in applicationHost.config:
<location path="MySite/MyVDir"><system.webServer><httpProtocol><customHeaders><add name="X-CustomHeader" value="CustomHeaderValue" /></customHeaders></httpProtocol></system.webServer></location>
When I remove my virtual directory, I'd also like to delete/remove any custom configuration for its location. How do I completely remove a virtual directory in this way?
Hi,
I'm on win server 2012R2 with IIS 8.5 (note: I'm exactly do the same thing with my old server 2008R2 without have this problem)
I'll try to configure an FTP site with the option «User name directoty(disable global virtual directories)»:
1- I'll create my FTPRoot in my inetpub folder with my LocalUser directory in there and create my individual folder for each user.
2- I'll create the FTPSite in IIS with basic authentification and No SSL and I'll put my virtual LocalUser In. I'll create a virtual directory in this place for each of my user that I want (same to step 1)
3- I'll haved create each users in the (active directory Users and Computers) obviously
If I put the user isolation option on «Do not isolate users», I can connect with all of my user but eachs of these can see all the local user directoty root, And when I'll set the option to «User name directoty(disable global virtual directories)», I' cant connect with any user.
Maybe is a problem with access rights but I have try many option without succes...
Is anybody have a solution?
Thks and sorry for my English!