exchange all virtual directory error: An IIS directory entry couldn't be created. The error message is Access is denied.
Здравствуйте, при попытке изменить свойство "проверка подлинности" в ECP возникает ошибка: Не удалось создать запись каталога служб IIS. Сообщение об ошибке - Access is denied. . HResult = -2147024891 при попытке сбросить виртуальный каталог в…
How to fix .NET 4.6 application pool crash on Windows Server 2022
We recently upgraded our Windows Server from 2012 to 2022. We are now experiencing App Pool crashes with IIS hosted applications running .NET 4.6. The crashes require us to stop the application pool, terminate the w3wp.exe task manually for that…
Application_start event not firing in server, but works just fine in debug.
We have an .net framework web application running on IIS 10. I've added some code in the Application_start method of Global.asax.cs and it's not getting fired at all in the server. This is working just fine in debug using visual studio 2022 using target…
About the maximum number of requests that can be processed at the same time in IIS 10.0
I'm launching an application service with IIS 10.0 on Windows Server. If you send 200 requests from the client to the server at the same time, 32 requests will be processed at the same time if the number of CPU cores on the server is 2, and 128 requests…
New cert not working in IIS 10
I installed a new cert. The site wasn't coming up. After researching the error message being generated, I saw it was "An error occurred while using SSL configuration for endpoint 0.0.0.0:443." Not the actual endpoint, but you get the idea.…
IIS 10 Reverse Proxy 502.3 - Bad Gateway Security Error
I have a IIS 10 server which sends requests to a Exchange Servers /OWA portal. I am attempting to setup the reverse proxy on the IIS server as all requests that come into the network end up at this server and for a specific subdomain I have the proxy…
Can the URL rewriting module directly obtain the string of Notepad
我的主要目的如下,注意代码中加粗的文字。 <rule name="RequestBlockingRule2" stopProcessing="true"> <match url=".*" /> <conditions> <add input="{HTTP_USER_AGENT}" pattern="这里可以获取记事本中的每行字符串"…
IIS' FTP permission issue
I don't have permission to delete or change this folder This is the FTP permission setting for IIS. use anonymous login Why can the file content be directly overwritten after modification?Discovered to have been replaced. Why did such a problem…
URL rewriting extensibility example cannot be downloaded
https://learn.microsoft.com/zh-cn/iis/extensions/url-rewrite-module/using-custom-rewrite-providers-with-url-rewrite-module?source=recommendations 我很喜欢这里的FileContainsProvider 从文本文件中读取字符串集这个功能。 这里的URL 重写扩展性示例已经无法下载,能否提供新的下载方式,谢谢!
How to Fix 403 forbidden error when no rules in IP and Domain restrictions
For about 9 website in my iis server only 3 website throws an 403 forbidden error, when there is no allow/deny rule at the moment?
HTTP Error 500.30 - ASP.NET Core app failed to start
After upgrading Visual Studio to version 17.11, my Web API stopped working and I get an error: HTTP Error 500.30 - ASP.NET Core app failed to start Common solutions to this issue: The app failed to start The app started but then stopped The app started…
How do i fix 403 forbidden error
when i try access to acccess my site which is inside IIS server i am getting 403 forbidden error response page, I checked with IP and domain restiction feature there are no rules at the moment
IIS log ingestion using AMA Agents for multiple IIS sites
I have installed an AMA agent on an internal IIS server via Azure ARC in an attempt to ingest logs into Microsoft Sentinel. The ingestion works for a single site, but we have multiple sites on the single IIS server, and the data source only allows…
Allow only one call to web service method at a time
Hi all, I have an ASP.NET web service installed on IIS. I need to permit only one concurrent call to a specific web method? How can I achieve this? Can I use mutex? I don't have such in-depth knowledge of application pool, processes and threads... Thank…
How do I make my website public?
I've made a website using IIS but it's not showing up on other devices when i visit the address. How do i do that?
Access Denied when Open an image
I have an IIS application. Before I saved and retrieved my images with the local address on the same server with IIS like "F:\ScanImage\C0\1\img.jpg"( and saved the address in db) and whenever want to open it, It was Ok! Now I changed my…
SSAS connections are not happening through msmdpump.dll while doing the load tests. What to do?
Hi All, We are performing a 1 hour load test of 300 users and 370 users on SSAS and we are seeing that application is working fine under 300 user load. However, when we are conducting 370 users test, in the first 20 minutes CPU was getting occupied 100%…
Web Front End for PS script - issues with PS remoting
Hi, I am evaluating Web Front End solution for backend PowerShell scripts - every single time backend PowerShell script fails here: $session = New-PSSession -ComputerName dcName -ConfigurationName DomainAdmins Invoke-Command -Session $session…
Is it possible to limit the size of the cs_cookie value in IIS logs?
Is it possible to limit the size of the cs_cookie or any other OOB field in IIS logs? I noticed you can set the field size when you define a custom one but haven't found a way of doing it for one of the default fields
Rewrite rule do not work for long URLs in IIS
I am using IIS as reverse proxy that redirects traffic made to some domain name like domain.com to internal kestrel service at localhost:5000. I am using regular expression (.*) and I am redirecting that to localhost:5000/{R:1}. This works perfectly…