Questions tagged [iis]

Internet Information Services (IIS) is a web server created by Microsoft for use with Microsoft Windows. Please mention which version of IIS you're running either in your question or by adding a version specific tag.

Wiki

IIS stands for Internet Information Services (IIS, formerly Internet Information Server) which is an extensible web server created by Microsoft for use with Microsoft Windows.

Several versions of IIS have shipped over the years, the most recent being:

  • IIS 10.0 - shipped with Windows 10 Fall Creators Update and Windows Server 2016
  • IIS 8.5 - shipped with Windows 8.1/Windows Server 2012 R2
  • IIS 8.0 - shipped with Windows 8/Windows Server 2012
  • IIS 7.5 - shipped with Windows 7/Windows Server 2008 R2
  • IIS 7.0 - shipped with Windows Vista/Windows Server 2008
  • IIS 6.0 - shipped with Windows 2003
  • IIS 5.1 - shipped with Windows XP Professional
  • IIS 5.0 - shipped with Windows 2000
  • IIS 4.0 - shipped with Windows NT Server/Workstation 4.0

Tag usage

The tag can be used for programming related problems when configuring IIS server for web development purposes. The tag can also be used for programming problems in implementing IIS services using IIS server.

Please note that https://serverfault.com/ is another StackExchange website, which can be used for more specific server installation and configuration related problems.

Important: Please ensure that you mention which version of IIS you're working with when asking a question. For example, there is a world of difference between IIS6 and IIS7+ and these products are very different, operationally and architecturally.

External Links

Related Tags

38900 questions
10
votes
4 answers

Invalid value for encryptedTicket parameter

I recently modified the login for my companies eComm site to have a "Keep me logged in" feature. The primary change was to make the forms authentication cookie persistent for these users. After the change was released I started seeing this…
PeaceFrog
  • 727
  • 1
  • 6
  • 14
10
votes
3 answers

IE11 unable to connect to local IIS, other browsers work fine

I'm using the XIP.IO wildcard domain to access a website running on a local IIS server. Today, IE 11 stopped accessing the site, whilst Chrome and Firefox continued to have access. It even works on remote machines, so I know it's related to my local…
Tomas McGuinness
  • 7,651
  • 3
  • 28
  • 40
10
votes
2 answers

IIS, multiple CPU cores, application pools and worker processes - best configuration for a single site?

We use Kentico CMS and I've exchanged emails with them about a web garden deployment. We have a single site running on a server with 8 cpu cores. In line with Kentico's advice, we have not altered the application pool web garden setting from the…
10
votes
2 answers

How do I remove IIS custom header using Powershell?

I am writing a powershell script that deploys a website to IIS 7. I would like to do the following command to remove a custom header using the Web-Administration module in powershell rather than with appcmd. How do I do this command in powershell…
Steve
  • 1,557
  • 2
  • 17
  • 34
10
votes
1 answer

How to close IIS Worker Process

I was trying to install Visual Studio 2008 SP1 on my machine and I encountered this issue. I looked it up, it looks like IIS Worker Process is some kind of w3wp.exe, so I looked into my Windows Task Manager and found out w3wp.exe is not running.…
HoKy22
  • 4,057
  • 8
  • 33
  • 54
10
votes
3 answers

URL Rewrite rule for IIS to replace folder path in everypage

We are having more than 300 pages in my website project. Over the time we have created a new server which is secure. This server is specially used for all the images in website. So here is the scenario: current implementation for images ( in aspx,…
patel.milanb
  • 5,822
  • 15
  • 56
  • 92
10
votes
6 answers

IIS 8 - Default Document - resource cannot be found

I'm trying to understand why my default document doesn't come up when I browse the virtual directory. If I browse to the site like I should be able to, I get this: However, if I add the page to the URL, it comes up: One SO answer suggested…
Bob Horn
  • 33,387
  • 34
  • 113
  • 219
10
votes
4 answers

Windows Authentication in web.config in asp.net mvc4

I need to enable Windows Authentication from my web.config, without setting it in IIS. I have the following elements in the web.config: authentication mode="Windows identity impersonate="true However windows authentication is not working. How…
zrabzdn
  • 1,345
  • 4
  • 11
  • 12
10
votes
4 answers

Get form data on 500 error

I'm attempting to gather information when our sites encounter an internal server error. We have many applications that were never set up with proper error logging and when an issue occurs our clients don't give us the best information to work with.…
Jason Kaczmarsky
  • 1,666
  • 1
  • 17
  • 30
10
votes
2 answers

disable IIS Express?

Just migrated to VS2012 and having this issue. I need to develop against real IIS server (to be able to debug web services when they called from network devices) Having issues with "IIS Express started on same port", etc. But there seems to be no…
katit
  • 17,375
  • 35
  • 128
  • 256
10
votes
1 answer

Intermittent receive failure using mvc webgrid on server only

I am using the System.Web.Helpers.WebGrid extensively throughout our application, and for the most part it is fine and in fact running locally it is always fine or with a self SSL on the server it is also fine. So I don't know if the problem could…
Adam
  • 619
  • 1
  • 4
  • 19
10
votes
1 answer

How do you specify the deployIisAppPath to a site root that is not DefaultWebSite?

I have a ASP.NET MVC web application project that I want to deploy to my IIS webserver. The site tree is set up thusly: SERVERNAME(myDomain\Username) Application Pools Sites Default Web Site MyProjectSite bin …
CodeWarrior
  • 7,388
  • 7
  • 51
  • 78
10
votes
1 answer

How do I programmatically find why Application_End() is invoked?

Application_End() is invoked when my application pool is stopped which can happen for a number of reasons, including automatic pool recycle or changes in the folder from which the application is served. The call stack will typically looks like…
sharptooth
  • 167,383
  • 100
  • 513
  • 979
10
votes
1 answer

Why is my MVC controller slow when serving images

I have this MVC view that has a list of images, these images are dynamic so they come from a controller. To simplify things this controller has only this code: [OutputCache(Duration = 0, NoStore = true, Location = OutputCacheLocation.None)] …
Flores
  • 8,226
  • 5
  • 49
  • 81
10
votes
4 answers

Prevent IIS from killing a Task before it ends

I'm building a Logging library that stores everything on an Azure table. Writing to that table obviously takes a lot of time (never more than 1 sec, but it's still too much to make the user wait), so Log method returns a LogResult instance, here's…
g3rv4
  • 19,750
  • 4
  • 36
  • 58
1 2 3
99
100