IIS Express is a developer version of IIS 7.5 that doesn't require Administrator rights to run.

learn more… | top users | synonyms

79
votes
3answers
22k views

IIS Express Windows Authentication

I'm trying to use IIS Express with VS2010 to host a silverlight application. I modified my applicationhost.config file to allow for modification of the proper configuration settings. I have the ...
69
votes
6answers
19k views

Using Custom Domains With IIS Express

Traditionally I use custom domains with my localhost development server. Something along the lines of: dev.example.com dev.api.example.com This has provided me a ton of flexibility when working ...
32
votes
2answers
17k views

Configure IIS Express for external access to VS2010 project

I am developing a project in VS2010 and am able to view my site locally via IIS Express. I would like to enable external access over the network. All my research has sent me to this blog entry: ...
31
votes
2answers
17k views

IISExpress User Interface

I have just downloaded and installed IIS express and it all works well running it from the command line: But how do i configure options for it, is there a standalone windows interface for it like IIS ...
30
votes
1answer
5k views

IISExpress returns a 503 error from remote machines

I'm attempting to test a website I have running in a local IISExpress instance with some other machines / devices on my local network. I am running Win7 Pro. When I first attempt to browse to my ...
29
votes
4answers
6k views

Starting and stopping IIS Express programmatically

I am trying to build a small application in C# which should start/stop an IIS Express worker process. For this purpose I want to use the official "IIS Express API" which is documented on MSDN: ...
27
votes
2answers
19k views

How to start IIS Express Manually

Is there a command line program or service that I can use to start IIS Express manually?
25
votes
1answer
10k views

IIS Express unable to create the virtual directory

I'm using IIS Express to create a virtual directory at http://localhost:5000/ and received this error: Unable to create the virtual directory. The URL 'http://localhost:5000/' is already mapped to a ...
24
votes
7answers
14k views

Visual Studio Debugging/Loading Very Slow

I'm at wits end. Visual Studio is typically painfully slow to debug or just plain load ("start without debugging") my MVC sites. Not always: at first, the projects will load nice and fast, but once ...
23
votes
4answers
13k views

Using IIS Express to host a website (temporarily)

I have a website (MVC3), which for developement is hosted in IIS Express. (I've run into a bug of Cassini Devserver and had to upgrade...) Now, I'm wondering, is it possible to let other machines on ...
21
votes
2answers
8k views

Using port 80 with IIS Express inside of VS2010

I've got an app that I am trying to run on my dev system under IIS Express from VS2010 that I need to use port 80 for, but I can't get it to work. I've looking up information talking about port 80 ...
20
votes
3answers
5k views

Using Fiddler with IIS7 Express

I am using IIS7 Express while developing my web application. I need to use fiddler to investigate an issue and cannot figure out how to configure things so I can get the HTTP stream. It seems that ...
20
votes
5answers
3k views

Dots in URL causes 404 with ASP.NET mvc and IIS

I have a project that requires my URLs have dots in the path. For example I may have a URL such as www.example.com/people/michael.phelps URLs with the dot generate a 404. My routing is fine. If I ...
19
votes
4answers
11k views

Binding IIS Express to an IP Address

Is it possible to use IIS Express to host pages on a network. Out of the box it can do localhost but I am trying to bind it to an IP address.
19
votes
2answers
6k views

IIS Express — Getting SSL to Work

I am unable to get IIS Express to accept secure connections for a VS2010 MVC3 project that I'm developing. I can get it to accept unsecure connections on port 80, but not secure on port 443. I've ...
17
votes
3answers
6k views

Creating virtual directories in IIS express

Is there any way to create a virtual directory in IIS express? I know that Cassini can't do this and it would be nice to be able to do this without using a full version of IIS. I've got it so far ...
16
votes
3answers
1k views

Programmatically determine if code is running under IIS Express

I am not sure this is even possible, but I am hoping for a clue as to determine if the code that is currently executing is running under IIS Express. My best approximation so far, which is incredibly ...
16
votes
5answers
2k views

Debugging MVC application in VS2012 attempts to start IIS Express twice

UPDATE I'm certain this is a Visual Studio bug with no obvious solution. I've encountered a number of people who have the same exact issue. I have submitted a bug ticket with Microsoft here: ...
14
votes
2answers
6k views

IIS Express vs Default IIS that comes with Windows 7

I am new to the world of IIS and I wanted to know the following... I have heard about IIS Express. I run Windows 7 Ultimate and have installed the IIS that comes packaged with Windows 7. As a ...
14
votes
3answers
5k views

IIS Express defaulting to port 44300 for https when enabling SSL

When you initially set up IIS Express to enable SSL, it defaults the port to 44300. Unfortunately, when I try to access my site in on https://localhost/ it doesn't work unless I use the port number ...
13
votes
3answers
10k views

Add MIME mapping in web.config for IIS Express

I need to add a new MIME mapping for .woff file extensions to IIS Express. If I add the following snippet to the "applicationhost.config" of IIS Express it works fine: <staticContent ...
13
votes
4answers
11k views

How do I display custom error pages in Asp.Net Mvc 3?

I want all 401 errors to be be redirected to a custom error page. I have initially setup the following entry in my web.config. <customErrors defaultRedirect="ErrorPage.aspx" mode="On"> ...
12
votes
2answers
7k views

IIS Express gives Access Denied error when debugging ASP.NET MVC

I have created an ASP.NET MVC 3 project, and am using IIS Express as the web server when developing. When I try to debug, I get the error message below. How can this be solved? Server Error in ...
12
votes
3answers
5k views

Is there a 64-bit build of IIS express 7.5?

The documentation at http://learn.iis.net/page.aspx/1010/iis-75-express-readme/ says that: Both 32-bit and 64-bit systems are supported, however only a 32-bit build of IIS 7.5 Express exists. ...
11
votes
2answers
5k views

Running IIS Express without administrator rights

I've upgraded to iis express 7.5 with VS2010 SP1. Within the release notes it specified that express is able to run WITHOUT administrator permissions. When I try to run from the commandline ...
10
votes
3answers
8k views

How do I configure a website project to use IIS Express?

I have a website project, not a web application. I have Visual Studio SP1 (beta) installed, but I only see the option to use an external web server; there is no "Use IIS Express" option like with web ...
10
votes
2answers
6k views

IIS express from command line

I've installed the IIS Express 7.5 Beta 3 and tried it on multiple computers (Windows 7, Windows Server 2008 R2 and Windows XP) and on each one of them I get the following error when running ...
10
votes
1answer
6k views

IISExpress Log File Location

IISExpress writes log and configuration data to pre-determined location out of the box. The directory is an "IISExpress" directory stored in a users home directory. In the directory is stored the ...
10
votes
1answer
2k views

IIS Express is automatically disabling anonymous authentication for my project, why?

When I switch my ASP.NET MVC project from Cassini web server to IIS Express, this is added to my applicationhost.config file: <location path="MyProject"> <system.webServer> ...
10
votes
2answers
3k views

How do I configure IIS Express to run with VS2008?

I have the IIS Express Beta downloaded and installed on WinXP. I don't have VS2010. How do I configure VS2008 to launch IIS Express Beta when debugging/running a site?
10
votes
1answer
426 views

IIS Express 7.5 refuses to launch from VS 2K10 Ultimate

When trying to debug a web project from VS 2010 Ultimate using IIS Express I get the following error: "Unable to launch IIS Express Web Server." IIS Express does start when this error appears and I ...
9
votes
1answer
5k views

How to configure Visual Studio 2008 to use IIS Express?

The IIS Express FAQ notes that: You can also manually launch IIS Express from the command line and use it with Visual Studio 2008, using the custom web server option How do I configure the ...
9
votes
4answers
6k views

IIS Express Web Server - (Every) Port is in Use?

Today I installed VS2010 SP1 Beta, and IIS 7 Express, as I currently have IIS5 on my local development machine and thought I'd try IIS Express out. I have gone into the properties window for my Web ...
9
votes
1answer
2k views

Mini Profiler does not render scripts

I've added Mini Profiler through NuGet and though in a really simple project works lovely, this is a big and existing project, and of course that I'm getting some problems with it :( it writes the ...
9
votes
5answers
3k views

Having problems using IIS Express SSL with VS2012 and a Team

The Problem: ADFS2 requires that a RP Trust uses https. The RP trust being https://localhost:44310/PAWS/. With that said, I need to have IIS Express use SSL locally. So, when I configure my ASP.NET ...
9
votes
2answers
12k views

How do I launch IIS 7.5 Express?

We have a new employee who has to work on an old ASP web site. Our IT people did not install IIS on her Windows XP machine so I tried to do it myself, but I need the Windows CD and I don't have it. ...
8
votes
4answers
13k views

Unable to launch the IIS Express Web server

When trying to debug a web application configured to use IIS Express 7.5 in Visual Studio 2010, I received the following error "Unable to launch the IIS Express Web server" When running from the ...
8
votes
1answer
965 views

How to use IIS Express without polluting the .csproj file

I recently switched to IIS Express for asp.net developement but I don't understand that clicking on "Use IIS Express..." (contextual menu on project in Visual Studio) affects the .csproj file... The ...
8
votes
4answers
4k views

IIS Express 8 - Cannot write configuration file

I am trying to use IIS Express 8 for a MVC site in VS2012. I am getting the following error whenever I attempt to create the site: Filename: ...
8
votes
2answers
2k views

Is it possible to use custom host headers / bindings with IIS7 Express?

I'm trying to configure a new ASP.NET MVC3 using IIS7 express (on my local development machine) to use a custom domain name. eg. my local dev machine. kick open my web browser goto ...
8
votes
1answer
2k views

what is difference between visual studio development server and IIS express server aka Webmatrix

some days before i found that Visual studio sp1 have a facility to run the Webmatrix aka IIS express from visual studio instead of vs development server. so i want to know what is difference between ...
8
votes
2answers
4k views

Visual Studio 2012 IIS Express 8 Fresh Install - Can't Connect

On Visual Studio 2010 + IIS Express 7 I was able to use IIS Express as a server and browse sites. I've since installed Visual Studio 2012 (on Windows 7 64-bit) with IIS Express 8, and I can't browse ...
7
votes
3answers
9k views

Upgrading to ASP.NET 4.5/MVC 4 forms authentication fails

I've just downoaded a VS 2012 along with ASP.NET 4.5 and MVC 4.0 and was kicking the tires with a sample app and found that the forms authentication that works perfectly with ASP.NET 4.0/MVC 3 no ...
7
votes
2answers
4k views

IIS Express and Classic ASP

I'm trying to get a classic ASP site set up on IIS Express under Windows XP. I am able to get iis setup and running as well as setting up the site, but when I try to browse to an asp page all I get ...
7
votes
3answers
4k views

how to run iisexpress app pool under a different identity

is there a way to run iisexpress app pool under a different identity other than the currently logged in user? I am getting around this problem using the "runas" command currently but I would like to ...
7
votes
2answers
3k views

Custom errors not working with IISExpress

I have a asp.net mvc application and am trying to get custom errors working with IISExpress. Works in Casini fine: <customErrors mode="On" defaultRedirect="/error"> <error ...
7
votes
5answers
7k views

How to run IIS Express as a process started via a Windows Service

I am trying to distribute IIS Express with my application. IIS Express will serve external web requests on port 80. I have no problems running IIS Express as well as serving external requests however ...
7
votes
1answer
8k views

Accessing IIS 7.5 Express from another machine on the intranet

I am running on VS 2010 Pro with SP1 Beta and IIS 7.5 Express. Everything is working fine, but I am trying to access the site from another machine on our intranet and it does not seem to see ...
7
votes
4answers
882 views

IIS Express on a shared development machine (rdp)

I have a problem which I thought could be common, searched the web for it but found nothing. We're using a shared development machine, and every developer connects through RDP and has his own ...
6
votes
1answer
4k views

Enabling PHP on IIS Express with Visual Studio (sans WebMatrix)

I am working on this web application which is mostly .NET, but a part is written in PHP. Yes, it is twisted and sick, but that's the way it has to be… In my development environment, IIS Express is my ...

1 2 3 4 5 11