随笔分类 - IIS
摘要:在powershell中执行 Get-ChildItem IIS:\AppPools | where {$_.state -eq "Stopped"} | Start-WebAppPool 需要确保以下2个service是启动的 Start-Service WAS (windows process
阅读全文
摘要:日志路径 %SystemDrive%\inetpub\logs\LogFiles https://stackify.com/where-are-iis-log-files-located/ Where Are IIS Log Files Located for IIS 7.0+? 1. From W
阅读全文
摘要:https://stackoverflow.com/questions/9564420/the-source-was-not-found-but-some-or-all-event-logs-could-not-be-searched EventLog.SourceExists enumerates
阅读全文
摘要:https://support.microsoft.com/en-ie/help/3151973/iis-shared-configuration-feature-requires-all-servers-to-run-the-same IIS Shared configuration featur
阅读全文
摘要:C:\inetpub\logs\LogFiles https://docs.microsoft.com/en-us/iis/manage/provisioning-and-managing-iis/managing-iis-log-file-storage#03 使用 space sniffer扫描
阅读全文
摘要:https://stackoverflow.com/questions/2555668/how-to-programmatically-get-sites-list-and-virtual-dirs-in-iis-7 Check out this post - seems to be a brand
阅读全文
摘要:https://stackoverflow.com/questions/5437723/iis-apppoolidentity-and-file-system-write-access-permissions Here's an issue with IIS 7.5 and ASP.NET that
阅读全文
摘要:https://www.codeproject.com/Articles/1432/What-is-an-ISAPI-Extension Introduction Unless you have been a caveman, you have seen a number of web sites
阅读全文
摘要:https://docs.microsoft.com/en-us/iis/troubleshoot/using-failed-request-tracing/troubleshooting-failed-requests-using-tracing-in-iis https://docs.micro
阅读全文
摘要:https://stackoverflow.com/questions/12859891/error-unable-to-access-the-iis-metabase 解决方法1 On Windows 8 Pro: %systemroot%\inetsrv\config On Windows 7
阅读全文
摘要:HTTP Error 500.19 - internal server error when you open an IIS Webpage HRESULT code 0x8007000d Error message: Server Error in Application "application
阅读全文
摘要:http://www.codepal.co.uk/show/make_IIS_work_with_local_IP_addresses_instead_of_localhost 只需要设置一下website的bindings就可以了
阅读全文
摘要:https://docs.microsoft.com/en-us/iis/configuration/system.webserver/defaultdocument/index Default documents are enabled by default, and IIS 7 defines
阅读全文
摘要:需要在web.config中的handlers中添加如下节点,保存之后,需要重启电脑。 <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name
阅读全文
摘要:排查后,发现是因为使用了代理导致的。 需要设置 Don't use the proxy server for local addresses.
阅读全文
摘要:http://www.cnblogs.com/paulhe/p/4786712.html 在Web.config中,分别配置<customErrors>和<httpErrors>节点即可完成两者错误页的设置。主要有以下不同点: 1.从定义上,<customErrors>设置ASP.NET应用程序的错
阅读全文
摘要:https://technet.microsoft.com/en-us/library/bb397374(v=exchg.80).aspx Install the IIS 6.0 Management Compatibility Components in Windows 7 or in Windo
阅读全文
摘要:以http为例, 假如ip地址从局域网的地址172.31.212.20改为127.0.0.1 但是网站没法访问了http://172.31.212.20/chile.backoffice/ 必须通过127.0.0.1才可以访问 这个链接才能访问http://127.0.0.1/chile.backo
阅读全文
摘要:https://support.microsoft.com/en-hk/help/973094/error-0x80070020-when-you-try-to-start-a-web-site-in-iis-7.0 This issue may occur if TCP port 80 and/o
阅读全文
摘要:http://stackoverflow.com/questions/13869817/difference-in-physical-path-root-path-virutal-path-relative-virtual-path-app 第一个答案 In regards to an ASP.NE
阅读全文