What does the “time” field in the log indicate, exactly?

On this page: http://blogs.msdn.com/b/mike/archive/2008/11/13/time-vs-time-taken-fields-in-iis-logging.aspx it says: The Time field is quite straightforward: it specifies when the log entry was created. Note that this is not always the same as when the log entry actually gets written to the log, as buffering can occur for some request/response scenarios. Therefore, you are correct in thinking that the … Read more

How can you change an IIS Site’s App Pool with the Powershell Web Admin Commandlets

ApplicationPool is a property on the web site in the IIS: drive. Set it like so: #site level Set-ItemProperty ‘IIS:\Sites\Default Web Site’ applicationPool ProjectAppPool #app level Set-ItemProperty ‘IIS:\Sites\Default Web Site\AppName’ applicationPool ProjectAppPool If you have the PowerShell Community Extensions installed, you can use the Show-Tree command to explore these drives e.g.: Show-Tree IIS:\Sites -ShowProperty -Depth … Read more

IIS Server error because of the current total memory

Solution is written in your post. To resolve this, either reduce the load on the machine or adjust the value of minFreeMemoryPercentageToActivateService on the serviceHostingEnvironment config element. The easiest way just add this into your web.config <system.serviceModel> <serviceHostingEnvironment minFreeMemoryPercentageToActivateService=”0″ /> </system.serviceModel> Read more about serviceHostingEnvironment here. Anyway how @Mr Grok correctly pointed it is an … Read more

IIS URL Rewrite https rule ignoring localhost

Your code should look like this instead <rule name=”Redirect to https” enabled=”true” stopProcessing=”true”> <match url=”(.*)” /> <conditions logicalGrouping=”MatchAll” trackAllCaptures=”false”> <add input=”{HTTPS}” pattern=”off” /> <add input=”{HTTP_HOST}” pattern=”localhost” negate=”true” /> </conditions> <action type=”Redirect” url=”https://{HTTP_HOST}/{R:1}” /> </rule>

IIS7 access website from remote computer

Check your firewall. You will have to open TCP Port 88. Part 4: Opening Up to the Outside World Windows Firewall blocks the World Wide Web Services port by default (Port 80). With this port blocked, other machines cannot connect to your web server. This severely limits the scope of potential web site viewers. So, … Read more

tech