Questions tagged [iis-8]

Internet Information Services (IIS) Version 8 is a web server and a set of feature extension modules created by Microsoft for use with Microsoft Windows, and shipped with WIndows 8 and Windows Server 2012.

Internet Information Services (IIS8) is a web server and a set of feature extension modules created by Microsoft for use with Microsoft Windows. IIS8 is available with Windows 8 and Windows Server 2012.

Some IIS Links:

2029 questions
58
votes
5 answers

How do I see currently executing web request on IIS 8

In IIS 7, I would click on "worker process" then "View Current Request" to see all the requests currently being executed. http://technet.microsoft.com/en-us/library/cc732518(v=WS.10).aspx In IIS 8, I do not see this option. Is there something I…
BillRob
  • 4,659
  • 4
  • 26
  • 38
50
votes
5 answers

Visual Studio 2013 gives "Cannot add duplicate collection entry of type ‘mimeMap’"

I have a site that was built using Visual Studio 2010. When I upgraded to Visual Studio 2013, on some pages I would get an error that said: Cannot add duplicate collection entry of type 'mimeMap' with unique key attribute 'fileExtension' set to…
Eric Barr
  • 3,999
  • 5
  • 29
  • 42
47
votes
3 answers

aspnet_regiis.exe -ir does not work on windows 8

I am trying to deploy an ASP.NET MVC3 app to my Windows 8 box with IIS8. When I try to route to the site I get the following error: Pretty much everything I can find on this issue says to run: aspnet_regiis.exe -ir When I run this on my Windows 8…
JuggernautDad
  • 1,135
  • 2
  • 13
  • 28
45
votes
4 answers

Using in memory repo for data protection when running in IIS

I'm running a production server (Windows Server 2012) with an AspNet Mvc Core RC1 website. I'm seeing the following in the logs: Neither user profile nor HKLM registry available. Using an ephemeral key repository. Protected data will be unavailable…
mrahhal
  • 3,322
  • 1
  • 22
  • 41
44
votes
2 answers

ASP.NET MVC 5 Web.config: "FormsAuthenticationModule" or "FormsAuthentication"

Ok so this not a big deal, but it's bugging me and I can't let it go. So I'm using MVC 5.1 with .NET 4.5.1 and OWIN authentication. So when you create a new MVC 5 project, the following is automatically added to the Web.config to get rid of the…
wired_in
  • 2,593
  • 3
  • 25
  • 32
41
votes
3 answers

Windows Authentication for ASP.NET MVC 4 - how it works, how to test it

I have never used Windows Authentication for ASP.NET MVC web applications before, but Forms Authentication. Recently, I have had an ASP.NET MVC 4 web application that requires a Windows Authentication implementation for users who are granted to log…
Thomas.Benz
  • 8,381
  • 9
  • 38
  • 65
40
votes
9 answers

IIS 8.0 ASP.NET and Error 500.19

I can't seem to get any ASP.NET sites to run under IIS8 on Windows 8. Under IIS Express they are fine, but I've: Installed IIS8 Installed ASP.NET 3.5 and 4.5 features in IIS Created a valid application pool Added a new Application in IIS manager…
ConsultUtah
  • 6,639
  • 3
  • 32
  • 51
39
votes
1 answer

MVC 4 website with .NET 4.5 on IIS 8 in Windows 8 gives 403.14 forbidden error

I have a website that I built in Visual Studio 2012 using MVC 4 and .NET framework 4.5. When I try to run it via IIS 8 on a machine running Windows 8 Pro, I get a 403.14 Error. It says "Forbidden The Web server is configured to not list the…
RossD
  • 620
  • 2
  • 6
  • 13
34
votes
2 answers

Web Deploy from Visual Studio 2012 to a remote IIS 8 server

I have a remote Windows 2012 server running IIS 8 from which I am hosting a web application. My local development box is running Visual Studio 2012. Currently I am publishing my app as a web deployment package (.zip), RDP'ing to the production…
QFDev
  • 8,668
  • 14
  • 58
  • 85
31
votes
5 answers

How do I properly instantiate 32-bit COM objects in classic ASP after installing Windows Update KB4340558?

On Windows Server 2012 R2, after installing update KB4340558 (update history) / KB4338424 (installed updates) we can no longer instantiate .NET .DLLs (interop) in classic ASP in 32-bit mode using server.createobject. We receive the error 0x800A01AD…
user2458080
  • 989
  • 8
  • 17
31
votes
2 answers

How to configure Web Deploy publishing feature on IIS so developer can publish?

I control a server running IIS 8 on Windows Server 2012. I want to publish a few basic asp.net websites with the Publish option in Visual Studio 2012. There are no good/current Microsoft articles on the server configuration steps. 1) What exactly…
stackonfire
  • 1,525
  • 4
  • 17
  • 23
30
votes
2 answers

How to remotely stop/start an application pool in IIS 8

Caveat: using one line each! I had these commands for use in IIS 6, and they worked just fine. Start: (get-wmiobject -namespace 'root\MicrosoftIISv2' -computername 'REMOTE_SERVER' -class 'IIsApplicationPool' | where-object {$_.Name -eq…
Barry Gallagher
  • 6,156
  • 4
  • 26
  • 30
29
votes
9 answers

IIS Compilation Error -2146232576 AspNetInitializationExceptionModule

I have a fairly simple C# WebAPI2 project that runs locally but after publishing to IIS on a remote machine (Windows Server 2012 R2 Standard) the web page displays the following (after setting customErrors to "Off"): Server Error in '/'…
feganmeister
  • 686
  • 1
  • 8
  • 15
29
votes
4 answers

How to register .Net 4.5.1 with IIS8 on windows 10

How to register .Net 4.5.1 with IIS8 on windows 10 machine? it used to be simple as running command "aspnet_regiis -i"...but not anymore. if try to run this command i get error This option is not supported on this version of the operating system. …
LP13
  • 30,567
  • 53
  • 217
  • 400
28
votes
1 answer

ASP.NET Web Api 2 / EF6 first call initialization performance

The first call to our API is always extremely slow. For example, below demonstrates the CPU usage and time it takes for the first call to complete: The first call can take up to 30 seconds and eats almost 100% CPU. Call 2 and 3 take 200ms (as…
Dave New
  • 38,496
  • 59
  • 215
  • 394