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
15
votes
2 answers

Retrieving the COM class factory for component with CLSID {688EEEE5-6A7E-422F-B2E1-6AF00DC944A6} failed

I am creating application which stop the IIS Default Web Site. I used a PowerShell script to stop website because that script is executed form my website. This is my script: Import-Module…
Jenish Zinzuvadiya
  • 999
  • 2
  • 15
  • 29
15
votes
5 answers

Infinite redirect loop for Basic or Windows authentication?

I am working on a new ASP.NET application. On IIS8, if I disable Anonymous access and enable Basic or Windows authentication, it goes into an infinite redirect loop and lands at the following URL after the browser breaks the…
arao6
  • 3,316
  • 5
  • 30
  • 51
15
votes
3 answers

HTTP Error 403.4 - Forbidden

When I access my localhost of my machine I get the following screen whereas when I try the same in my server, I getting the following error HTTP Error 403.4 - Forbidden The page you are trying to access is secured with Secure Sockets Layer…
Praveen
  • 55,303
  • 33
  • 133
  • 164
15
votes
6 answers

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 a single site on it. In addition, when I look at…
Chris Moschini
  • 36,764
  • 19
  • 160
  • 190
14
votes
1 answer

Troubleshooting Web App process restarting

Our web app process is restarting regularly and we are unable to determine the reason. When looking into Application Events (using the 'Diagnostics and solve problems' blade in the Azure Portal), there exists a bunch of the following Info logs by…
Dave New
  • 38,496
  • 59
  • 215
  • 394
14
votes
1 answer

server DNS address could not be found - iis

I added new site in IIS When I'm trying open site in browser it is showing DNS error trying to resolve it since 5 days but I'm unable to solve this issue. please help I'm using windows 10 OS
sai kiran
  • 557
  • 2
  • 5
  • 16
14
votes
2 answers

Setting up URL Rewrite rule for a specific domain

For local dev testing, I need to catch all requests to www.somedomain.com/XXX (where X is the path), and send them on to localhost/somevdir/XXX. I've added this to my HOSTS file (c:\windows\system32\drivers\etc): 127.0.0.1 www.mydomain.com Then,…
Matt Roberts
  • 26,371
  • 31
  • 103
  • 180
13
votes
1 answer

Trust a self signed cert from IIS

I have an externally hosted iis webserver where i run my website. I would like to add a self signed certificate to this website and trust it on my local client, to remove "Insecure Connection" from the browser. What i have done so far is the…
Thomas Schneiter
  • 1,103
  • 2
  • 19
  • 35
13
votes
1 answer

IIS Application pools CLR v4.0 vs No managed code

I am currently developing an app which uses .Net core. I have hosted a lot of micro-services on IIS Manager in new app pool. I was wondering is there any advantages for app pool version instead of the latest.NET CLR v4.0, to use no managed code?…
R. Vait
  • 918
  • 2
  • 7
  • 20
13
votes
5 answers

New-WebBinding: Cannot retrieve the dynamic parameters for the cmdlet

We're using Windows 2012 Server R2. We're trying to automate the creation of LetsEncrypt certificates. We're using LetsEncrypt-Win-Simple (https://github.com/Lone-Coder/letsencrypt-win-simple). Once the cert is created (via LetsEncrypt.exe) we have…
Dave Quested
  • 786
  • 1
  • 8
  • 20
13
votes
1 answer

difference between kernel mode and user mode caching in IIS 8.0

What is the difference between kernel mode caching and user mode caching and how to track both ?
Prasoon Karunan V
  • 2,916
  • 2
  • 12
  • 26
13
votes
2 answers

"Object named IIS_IUSRS could not be found" when adding user to PHP sessions directory iis 8

I'm running windows server 2012 R2 running IIS 8. New to the whole windows server environment. To install PHP, I'm following the below tutorial Install and Configure PHP Part of it says, in order to use PHP's session functionality properly I need…
TDsouza
  • 910
  • 2
  • 13
  • 38
13
votes
5 answers

Moved my ASP.NET website to IIS 8 on windows server 2012... services missing: .svc files are viewable, but their methods give a 404

I moved from IIS 6 on windows server 2003. I can browse to the .svc files. I get a nice standard "This is a Windows© Communication Foundation service" page if I go to http://example.com/Service.svc in a browser. But I can't browse to any of the…
MGOwen
  • 6,562
  • 13
  • 58
  • 67
13
votes
8 answers

Assign IIS SSL Certificate to Binding with Host Header using PowerShell

I'm trying to assign a certificate to a HTTPS binding. Unfortunately, I get this error from PowerShell: new-item : Cannot create a file when that file already exists At line:3 char:56 + get-item -Path "cert:\localmachine\my\$cert" | new-item…
MichelZ
  • 4,214
  • 5
  • 30
  • 35
13
votes
2 answers

Extra folder appended to my web root on AWS

I'm running into a problem all of a sudden. I recently re-deployed my .net application on AWS elastic beasnstalk instance and now have an extra segment appended to my web root. Now my URL structure looks like this: http://domain.com/Project…