All Forumshttp://forums.iis.net/default.aspxAll ForumsFri, 24 May 2013 14:17:57 -0400urn:uuid:00000000-0000-0000-0000-000000000000urn:uuid:00000000-0000-0000-0000-000002051387http://forums.iis.net/p/1199042/2051387.aspx/1?Webdav+on+IIS+8Webdav on IIS 8 <p>Hi,</p> <p>&nbsp;</p> <p>is there a step by step procedure to quickly configure and use Webdav on IIS 8 on a Windows 2012 Server?</p> <p>&nbsp;</p> <p>Thank you!</p> 2013-05-24T18:16:14-04:002013-05-24T18:16:14.133-04:00urn:uuid:00000000-0000-0000-0000-000002051385http://forums.iis.net/p/1199040/2051385.aspx/1?Web+site+will+not+work+when+using+SSLWeb site will not work when using SSL <p>hey everyone!</p> <p>&nbsp;&nbsp; I have had to rebuild a web server.&nbsp; I used Appcmd to migrate over all of the sites and server settings.&nbsp; I obtained and installed a certificate on the new webserver.&nbsp;&nbsp; This is a cold fusion site... the thing is, the site works perfectly when using HTTP.&nbsp; the minute you use HTTPS:&nbsp;it says it cannot find the site.&nbsp; I checked the usual susepects.. made sure that the binding was there and so on, but still no go.&nbsp;</p> <p>Does anyone have any ideas on what I can check?&nbsp; this is driving me insane....</p> <p>Thanks!</p> <p>&nbsp;</p> <p>John</p> 2013-05-24T17:59:33-04:002013-05-24T17:59:33.96-04:00urn:uuid:00000000-0000-0000-0000-000002051208http://forums.iis.net/p/1198929/2051208.aspx/1?cache+control+IIS8+always+set+to+privatecache-control IIS8 always set to private <p>I tried changing the common headers to Expire webcontent immediately. Cache-control still shows up as a private in fiddler.</p> <p>I tried setting a custom header of name:Cache-Control and value: no-cache at which point fiddler shows Cache-Control:private,no-cache</p> <p>I've ruled out any code setting the header because i tried this on two sites on the same server, one of which is pretty much all static content with no code. Definitely no code touching any http headers. And it still wont let me set cache-control:no-cache</p> <p>Any suggestions?</p> 2013-05-23T01:18:21-04:002013-05-23T01:18:21.74-04:00urn:uuid:00000000-0000-0000-0000-000002051383http://forums.iis.net/p/1199039/2051383.aspx/1?Accessing+WebResource+axdAccessing WebResource.axd <p>I have an issue with a .NET application and the error has lead me to an IIS issue. &nbsp;The only answer I found was for IIS6. &nbsp;There is no Home Directory tab in IIS 7 and I am trying to replicate these steps which were for IIS6...any help would be appreciated.</p> <ul class="comment-list"> <li class="comment-wrap answered">&lt;div class=&quot;comment-right-col&quot;&gt; <p>Go to Internet Information Services, right-click on the website, and click Properties.<br> 1.&nbsp; Go to the Home Directory tab.<br> 2.&nbsp; Click the Configuration button.<br> 3.&nbsp; Find the .axd file entry and click Edit...<br> 4.&nbsp; Make sure it is mapping to c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll<br> 5.&nbsp; Also make sure the &quot;Check that the file exists&quot; box is not checked.&nbsp; The file technically does not exist until .NET calls for it.</p> &lt;/div&gt; </li></ul> 2013-05-24T17:32:28-04:002013-05-24T17:32:28.457-04:00urn:uuid:00000000-0000-0000-0000-000002051382http://forums.iis.net/p/1199038/2051382.aspx/1?MySQL+Error+WebMatrix+3MySQL Error - WebMatrix 3 <p>I tried to set up a WordPress site in WebMatrix 3. I created a username and password and WebMatrix was installing the components. Somehow it got hung up, so I closed the program.</p> <p>I reopened and tried again. When I got to Type of Database, it showed this:</p> <p>MySQL (Installed)</p> <p>Administrator username: root</p> <p>Password: ************* (prefilled in)</p> <p>So I hit continue and got an error saying:</p> <p>&quot;The specified password for user account 'root' is not valid, or failed to connect to the database server.</p> <p>Get more information online: <a href="http://go.microsoft.com/fwlink/?LinkId=245971&quot;"> http://go.microsoft.com/fwlink/?LinkId=245971&quot;</a></p> <p>I tried to retype my password to no avail.</p> <p></p> <p>What can I do to get past this point?</p> <p></p> <p>Thanks</p> 2013-05-24T17:13:32-04:002013-05-24T17:13:32.95-04:00urn:uuid:00000000-0000-0000-0000-000002051381http://forums.iis.net/p/1199037/2051381.aspx/1?How+do+you+obtain+a+scheduled+restart+time+for+an+Application+Pool+via+WMI+How do you obtain a scheduled restart time for an Application Pool via WMI... <p>Hello!</p> <p>I am working on a VBScript to get various IIS settings for a set of IIS Servers (Win 2k8 R2 with IIS 7.5).</p> <p>I am able to remotely connect to&nbsp;\root\WebAdministration and&nbsp;get&nbsp;.InstancesOf(&quot;ApplicationPool&quot;).&nbsp; I have been able to get the AppPool name, version of .Net and other values off of ApplicationPool but I'm having a hard time trying to figure out how to get anything out of ApplicationPool.Recycling.PeriodicRestart.Schedule.&nbsp; I see that is an array of object:ScheduleElement but I have not been able to get that array.</p> <p>I have tried using InstancesOf, GetArrayData and tried some .Associators calls, but keep getting nothing back (even though I have numerous AppPools that have scheduled restart times).&nbsp; I want to get this value to make sure that all AppPools that are expected to restart at a scheduled time are configured to do so.</p> <p>Here's what I have so far...</p> <p>&nbsp;</p> <pre class="prettyprint">Option Explicit On Error Resume Next Dim objWMIService, objAppPool, objAppPools, objApplications, objSched, objSchedules Dim strComputer, strAppPoolMode strComputer = &quot;.&quot; Set objWMIService = GetObject(&quot;winmgmts:{&quot; _ &amp; &quot;impersonationLevel=impersonate,&quot; _ &amp; &quot;authenticationLevel=pktPrivacy&quot; _ &amp; &quot;}!\\&quot; &amp; strComputer &amp; &quot;\root\WebAdministration&quot;) If Err.Number &lt;&gt; 0 Then WScript.Echo &quot;ERROR : Failed to get WMI handle [&quot; &amp; Err.Description &amp; &quot;]&quot; Err.Clear Else Set objAppPools = objWMIService.InstancesOf(&quot;ApplicationPool&quot;) WScript.Echo &quot;--------------------------&quot; For Each objAppPool In objAppPools WScript.Echo objAppPool.Name WScript.Echo &quot;State: &quot; &amp; GetStateDesc(objAppPool.GetState) WScript.Echo &quot;AutoStart: &quot; &amp; objAppPool.AutoStart WScript.Echo &quot;Enable32BitAppOnWin64: &quot; &amp; objAppPool.Enable32BitAppOnWin64 If objAppPool.ManagedPipelineMode = 0 Then strAppPoolMode = &quot;Integrated&quot; ElseIf objAppPool.ManagedPipelineMode = 1 Then strAppPoolMode = &quot;ISAPI&quot; End If WScript.Echo &quot;ManagedPipelineMode: &quot; &amp; strAppPoolMode WScript.Echo &quot;ManagedRuntimeVersion: &quot; &amp; objAppPool.ManagedRuntimeVersion WScript.Echo &quot;Recylcing Schedule: &quot; &amp; objAppPool.Recycling.PeriodicRestart.Schedule Set objApplications = objAppPool.Associators_(, &quot;Application&quot;) For Each objApplication In objApplications WScript.Echo &quot;Application: &quot; &amp; objApplication.Path Next Set objSchedules = objAppPool.Recycling.PeriodicRestart.Schedule For Each objSched In objSchedules WScript.Echo &quot;Restart: &quot; &amp; objSched Next WScript.Echo &quot;--------------------------&quot; Next End If Function GetStateDesc(StateCode) Select Case StateCode Case 0 GetStateDesc = &quot;Starting&quot; Case 1 GetStateDesc = &quot;Started&quot; Case 2 GetStateDesc = &quot;Stopping&quot; Case 3 GetStateDesc = &quot;Stopped&quot; Case 4 GetStateDesc = &quot;Unknown&quot; Case Else GetStateDesc = &quot;Attempt to retrieve state failed.&quot; End Select End Function</pre> <p></p> 2013-05-24T17:08:29-04:002013-05-24T17:08:29.337-04:00urn:uuid:00000000-0000-0000-0000-000002051380http://forums.iis.net/p/1199036/2051380.aspx/1?www+example+com+exchangewww.example.com/exchange <p>Hi Folks,</p> <p>There has been a setting change which has changed the behavior of &quot;http://www.example.com/exchange&quot; and now I get an error:</p> <h1 style="padding-left:60px">Directory Listing Denied</h1> <p style="padding-left:60px">This Virtual Directory does not allow contents to be listed.</p> <p>I don't know what setting changed for IIS to cause this.</p> <p>Thanks for the help,</p> <p>Chris.</p> 2013-05-24T17:00:06-04:002013-05-24T17:00:06.203-04:00urn:uuid:00000000-0000-0000-0000-000002051379http://forums.iis.net/p/1199035/2051379.aspx/1?RewriteMap+any+directory+name+and+append+to+querystring+RewriteMap any directory name and append to querystring <p>A community member posted a similar thread but I had a twist to the resolution:&nbsp; I want to redirect <a href="http://mydomain.com/1234">http://mydomain.com/1234</a> (where 1234 could be any value [number, char, dash] up to 40 characters) to <a href="http://mydomain.com/uri.php?a=1234.">http://mydomain.com/uri.php?a=1234.</a>&nbsp; As you will notice, I'm also trying to pass the &quot;Key&quot; to my querystring as &#36;1.</p> <p>I really appreciate the communities help.&nbsp; Here is my vs2010 web.config code:</p> <p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; &lt;rewrite&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;rewriteMaps&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;rewriteMap name=&quot;StaticRedirects&quot;&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;add key=&quot;^.*\/?.*&#36;&quot; value=&quot;uri.php?a=&#36;1&quot; /&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/rewriteMap&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/rewriteMaps&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;rules&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;rule name=&quot;Redirect Rule&quot; stopProcessing=&quot;true&quot;&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;match url=&quot;.*&quot; /&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;conditions&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;add input=&quot;{StaticRedirects:{REQUEST_URI}} pattern=&quot;(.&#43;)&quot; /&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/conditions&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;action type=&quot;Redirect&quot; url=&quot;http://pinnedurl.com/{C:1}&quot; appendQueryString=&quot;False&quot; redirectType=&quot;Permanent&quot; /&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/rule&gt;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/rules&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br> &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;/rewrite&gt;</p> 2013-05-24T16:36:29-04:002013-05-24T16:36:29.22-04:00urn:uuid:00000000-0000-0000-0000-000002051378http://forums.iis.net/p/1199034/2051378.aspx/1?IIS+7+5+HTTP+Dynamic+Compression+file+sizeIIS 7.5 HTTP Dynamic Compression file size <p>After installing modules and configuring all stuff for dynamic compression I've got some problems with compressing dynamically generated by Classic ASP responses:</p> <ol> <li> <p>minFileSizeForComp do absolutely nothing. In IIS said it is in bytes, in MSDN it is in KiB, but 500 bytes is still less than 2700 bytes or KiB and should not be compressed, but it was.</p> </li><li> <p>IIS don't use compression to big files. Upper limit is 4,0 MiB - 6 bytes = 4194298 bytes (established empirically). One byte more and compression does not work. Failed Request Tracing contains DYNAMIC_COMPRESSION_DO (and other stuff) for 4194298 bytes response and do not for 4194298 &#43; 1 bytes response.</p> </li></ol> <p>Here's some of my settings:</p> <p>system.webServer/httpCompression/dynamicCompressionBufferLimit = 65536</p> <p>system.webServer/httpCompression/minFileSizeForComp = 2700 (bytes or KiB, I think first)</p> <p>system.webServer/asp/limits/bufferingLimit = 16777216 (16 MiB)</p> 2013-05-24T16:27:59-04:002013-05-24T16:27:59.657-04:00urn:uuid:00000000-0000-0000-0000-000002039348http://forums.iis.net/p/1194102/2039348.aspx/1?Web+Deploy+3+0+service+crash+Web Deploy 3.0 service crash <p>Hi,</p> <p>I've been fighting WebDeploy 3.0 for a few days because Web Deploy Service (MsDepSvc.exe) randomly crashes. I've managed to recreate this behavior by executing the following run command 10-15 times on a row:</p> <p>msdeploy.exe -verb:sync -source:runCommand=&quot;ipconfig&quot; -dest:auto,computerName=&quot;remoteServer&quot;,userName=&quot;domain\user&quot;,password=&quot;password&quot;</p> <p>By duplicating this command in a .bat file about 20 times, I've managed to consistently replicate this crash. In addition we've seen this behaviour very frequently in our continuous deployment process, where this issue was originally discovered, but at different intervals and times.</p> <p>Note: By adding back Web Deploy 2.0 on the servers, the problem goes away.</p> <p>On the server running MsDepSvc the follwing relevant entries are found in the event log:</p> <p>1) Entry from WebDeploy:&nbsp;</p> <p>System.ArgumentException: Invalid token for impersonation - it cannot be duplicated.<br> at System.Security.Principal.WindowsIdentity.CreateFromToken(IntPtr userToken)<br> at System.Security.Principal.WindowsIdentity..ctor(IntPtr userToken, String authType, Int32 isAuthenticated)<br> at System.Security.SecurityContext.CreateCopy()<br> at System.Threading.ExecutionContext.CreateCopy()<br> at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32 errorCode, UInt32 numBytes, NativeOverlapped* pOVERLAP)</p> <p>2) Entry from .NET runtime:</p> <p>Application: MsDepSvc.exe<br> Framework Version: v4.0.30319<br> Description: The process was terminated due to an unhandled exception.<br> Exception Info: System.ArgumentException<br> Stack:<br> at System.Security.Principal.WindowsIdentity.CreateFromToken(IntPtr)<br> at System.Security.Principal.WindowsIdentity..ctor(IntPtr, System.String, Int32)<br> at System.Security.SecurityContext.CreateCopy()<br> at System.Threading.ExecutionContext.CreateCopy()<br> at System.Threading._IOCompletionCallback.PerformIOCompletionCallback(UInt32, UInt32, System.Threading.NativeOverlapped*)</p> <p>Note: We use WebDeploy 3.0 from the source/client. The command works perfectly with WebDeploy 2.0 on the server, so for now we've been forced to use 2.0 until this problem is solved in 3.0.&nbsp;</p> <p>Would be very interested to hear if others are able to replicate this, cause we have these errors on 10s of servers in 2 different environments/domains.</p> <p>Thanks,</p> <p>Jon Arild Tørresdal</p> 2013-01-10T12:06:37-05:002013-01-10T12:06:37.443-05:00urn:uuid:00000000-0000-0000-0000-000002051376http://forums.iis.net/p/1199033/2051376.aspx/1?Set+Server+Variables+before+HTTP+Request+to+content+server+using+ARRSet Server Variables before HTTP Request to content server using ARR <p>Hi all,</p> <p></p> <p>I have reviewed at <a href="http://www.iis.net/learn/extensions/url-rewrite-module/setting-http-request-headers-and-iis-server-variables" title="Setting HTTP request headers and IIS server variables" target="_blank"> &quot;Setting HTTP request headers and IIS server variables&quot;</a> and followed all the steps to check Set Server Variables.</p> <p>It's working perfectly.</p> <p>But when i am looking into Fiddler it's doesn't show me any header or cookie value set.</p> <p>What we can do so it will set server varialbe value and be able to see in fiddler?</p> <p></p> <p><strong>Fiddler Inspector Output:</strong></p> <p></p> <p><strong>Request Header:</strong></p> <p>------------------------------------------------------------------------------------------------------------</p> <p>GET http://localhost/fr-fr/language.aspx HTTP/1.1<br> Host: localhost<br> Connection: keep-alive<br> Cache-Control: max-age=0<br> Accept: text/html,application/xhtml&#43;xml,application/xml;q=0.9,*/*;q=0.8<br> User-Agent: Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36<br> Accept-Encoding: gzip,deflate,sdch<br> Accept-Language: en-US,en;q=0.8</p> <p></p> <p><strong>Response Header:</strong></p> <p>-----------------------------------------------------------------------------------------------------------</p> <p>HTTP/1.1 200 OK<br> Cache-Control: private<br> Content-Type: text/html; charset=utf-8<br> Vary: Accept-Encoding<br> Server: Microsoft-IIS/8.0<br> X-AspNet-Version: 4.0.30319<br> X-Powered-By: ASP.NET<br> Date: Fri, 24 May 2013 15:02:25 GMT<br> Content-Length: 605</p> <p></p> <p></p> <p>Thanks</p> <p></p> 2013-05-24T15:15:06-04:002013-05-24T15:15:06.633-04:00urn:uuid:00000000-0000-0000-0000-000002051375http://forums.iis.net/p/1199032/2051375.aspx/1?Authentication+error+in+IIS7Authentication error in IIS7 <p>Hello, newbie to IIS and web development so I apoligize in advance if my terminology is off a bit.</p> <p>I am experiencing some issues migrating some applications/sites from a&nbsp;Windows 2000 server/IIS5 to a Windows 2008 server/running IIS7.</p> <p>&nbsp;Currently there are only two applications I am trying to migrate, so far I have successfully migrated one and it is running perfectly but the other app is giving me a headache.</p> <p>Specs:</p> <p>XML application, ASP.NET v4.0/ASP.NET v4.0 Classic application pool, Windows Authentication/Basic Authentication.</p> <p>Errors:</p> <p>Depending on the application pool that i'm using i get two different errors (sort of). If I run the application with v4.0 I simply get a 401: Unauthorized Server error in &quot;/Application&quot; Application.</p> <p>When using the v4.0 classic I recieve the same 401 Error the first time I run it but every attempt following the initial run I get a</p> <h2><i>Object reference not set to an instance of an object.</i></h2> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><b>Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. <br> <br> <b>Exception Details: </b>System.NullReferenceException: Object reference not set to an instance of an object.<br> </span></p> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif"><b>Source Error:</b> <br> <br> </span></p> <table width="100%" bgcolor="#ffffcc"> <tbody> <tr> <td><pre class="prettyprint">An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.</pre></td> </tr> </tbody> </table> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif">I'm thinking it has something to do with my access, but I have full permissions to all the files needed to run the app?</span></p> <p><span face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif " style="font-family:Arial,Helvetica,Geneva,SunSans-Regular,sans-serif">Any ideas?</span></p> 2013-05-24T14:23:32-04:002013-05-24T14:23:32.027-04:00urn:uuid:00000000-0000-0000-0000-000002029611http://forums.iis.net/p/1191589/2029611.aspx/1?IIS+7+5+and+client+certificate+authenticationIIS 7.5 and client certificate authentication I'm trying to get client certificate authentication working with a user cert from a third party CA (DST ACES). My test IIS box has 'client certificate mapping authentication' installed. On the server, I have enabled 'Active Directory Client Certificate Authentication' at the server level in IIS. On my Default Web Site, I've enabled 'require SSL' and 'require client certificate'. I have a self-signed cert (generated by IIS) on the server. I've added the root CA cert to the Trusted Root Certificate Authorities on the IIS server (as well as the intermediate cert into the Intermediate Certification Authorities) When I browse to the site, I get a 403.7 error. I'm never prompted for anything on the client. Thoughts welcome on whatever step(s) I'm missing Blake 2012-09-07T17:04:56-04:002012-09-07T17:04:56.03-04:00urn:uuid:00000000-0000-0000-0000-000002030537http://forums.iis.net/p/1191842/2030537.aspx/1?URL+rewrite+map+to+take+www+site+com+1234+to+www+site+com+default+aspx+a+1234URL rewrite map to take www.site.com/1234 to www.site.com/default.aspx?a=1234 I'm new to this, and I greatly appreciate any assistance. I need to take any URL extension (the 1234 in www.site.com/1234 - and any other values passed) and redirect to a single page passing the value after the URL as a query string parameter (like www.site.com/default.aspx?a=1234. Is there a way to do this without specifying individual URL's to redirect? Basically, I just need to redirect anything passed after the url to default.aspx as a querystring parameter. Any ideas? Thanks! 2012-09-18T18:11:41-04:002012-09-18T18:11:41.18-04:00urn:uuid:00000000-0000-0000-0000-000002051259http://forums.iis.net/p/1198961/2051259.aspx/1?Trouble+Installing+SSL+certificates+to+server+sites+in+IIS7Trouble Installing SSL certificates to server/sites in IIS7 <p>I'm having a lot of trouble installing a(some?) SSL certificates to my site. We have been provided with some certificates (a pfx, several .pem files, and a jks) for authentication to use an API.<br> <br> Unfortunately my experience with certification like this is almost nil. Days have now passed and I'm not sure I'm any closer to solving this problem.</p> <p>When I try to import the pfx file from the server's Server Certificates window I am told 'Certificate cannot be used as an SSL server certificate';</p> <p>Trying to import the pem files to the site through the 'complete certificate request...' option returns an access error. (this exact error <a href="http://forums.iis.net/t/1189847.aspx/1">http://forums.iis.net/t/1189847.aspx/1</a>) But the solution outlined in that thread did not solve the problem.<br> <br> It may be that I am using the certificate files completely incorrectly. I believe the files themselves are correct however. The pem files include a pub key a priv key an intermediate CA and a root CA. How I am meant to use them is a little above me. I believe these can be combined into one pem file however this didn't work either.<br> <br> Renaming to .cer did allow me to install them to the Windows machine but have resulted in no practical changes.<br> <br> Any advice or guidance on to the right path would be greatly appreiciated (have of course already had a peruse of existing threads and FAQs).&nbsp;</p> 2013-05-23T15:50:53-04:002013-05-23T15:50:53.24-04:00urn:uuid:00000000-0000-0000-0000-000002051233http://forums.iis.net/p/1198944/2051233.aspx/1?SQL+Server+2008+R2+SP2+Failed+To+InstallSQL Server 2008 R2 SP2 Failed To Install <p>Hey,&nbsp;</p> <p>I don't know why but SQL Server 2008 won't install. Because of that nothing else installs either.</p> <p>I'm using Windows 8.</p> <p>Thanks any helpers!</p> <p>Here's the log:</p> <p>DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9817844<br> DownloadManager Information: 0 : https://go.microsoft.com/?linkid=9817844 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Length: 175<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 22 May 2013 21:17:11 GMT<br> Location: https://www.microsoft.com/web/webpi/4.5/webproductlist.xml<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 2.0.50727<br> Set-Cookie: MC1=GUID=7b8505b4df276e4e91aa31aa82b7c95d&amp;HASH=b405&amp;LV=20135&amp;V=3; domain=microsoft.com; expires=Sun, 03-Oct-2010 07:00:00 GMT; path=/<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:11 GMT</p> <p><br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/webproductlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;2a7fb72c9551ce1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 438447744200000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:12 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\-1250132447.xml.temp<br> DownloadManager Warning: 0 : Could not resolve keyword ID WIF<br> DownloadManager Warning: 0 : Could not resolve keyword ID identity<br> DownloadManager Warning: 0 : Could not resolve keyword ID federation<br> DownloadManager Warning: 0 : Could not resolve keyword ID claims<br> DownloadManager Warning: 0 : Could not resolve keyword ID authentication<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 2, majorSP: 0, minorSP: 0, productType: 6, architecture: x86<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/webapplicationlist.xml<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Warning: 0 : Could not resolve keyword ID ApplicationSpotlight<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 2, majorSP: 0, minorSP: 0, productType: 6, architecture: x86<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/webapplicationlist.xml' after preprocessing, location on disk: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1257519080.xml'<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/mediaproductlist.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/mediaproductlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;f97d7c1bdeace1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 791506043700000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:17 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\-645085719.xml.temp<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 2, majorSP: 0, minorSP: 0, productType: 6, architecture: x86<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/mediaproductlist.xml' after preprocessing, location on disk: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-645085719.xml'<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/ToolsProductList.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/ToolsProductList.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Accept-Ranges: bytes<br> ETag: &quot;66abeab13853ce1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 438447744200000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:17 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\-278528821.xml.temp<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 2, majorSP: 0, minorSP: 0, productType: 6, architecture: x86<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-278528821.xml'<br> DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/4.5/enterpriseproductlist.xml<br> DownloadManager Information: 0 : https://www.microsoft.com/web/webpi/4.5/enterpriseproductlist.xml responded with 304<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 304 Not Modified<br> Cache-Control: max-age=900<br> Last-Modified: Thu, 14 Feb 2013 18:06:16 GMT<br> Accept-Ranges: bytes<br> ETag: &quot;a744a9fbddace1:0&quot;<br> Server: Microsoft-IIS/8.0<br> P3P: CP=&quot;ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI&quot;<br> VTag: 438581343500000000<br> X-Powered-By: ASP.NET<br> X-Powered-By: ARR/2.5<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:17 GMT</p> <p><br> DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\-1611415340.xml.temp<br> DownloadManager Information: 0 : Filtering by majorOS: 6, minorOS: 2, majorSP: 0, minorSP: 0, productType: 6, architecture: x86<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/4.5/enterpriseproductlist.xml' after preprocessing, location on disk: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1611415340.xml'<br> DownloadManager Information: 0 : Sucessfully loaded the feed 'https://go.microsoft.com/?linkid=9817844' after preprocessing, location on disk: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1250132447.xml'<br> DownloadManager Information: 0 : Getting ratings file from http://go.microsoft.com/?linkid=9752395<br> DownloadManager Information: 0 : Contextual entry products: VWD2010SP1AzurePack<br> DownloadManager Information: 0 : Adding product Visual Web Developer Express 2010 SP1 (Latest) (VWD2010SP1AzurePack) to cart<br> DownloadManager Information: 0 : Contextual navigation to product 'VWD2010SP1AzurePack'<br> DownloadManager Information: 0 : http://go.microsoft.com/?linkid=9752395 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Length: 203<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 22 May 2013 21:17:18 GMT<br> Location: http://www.microsoft.com/web/handlers/WebPI.ashx?command=getatomfeedwithavgratingquery<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 2.0.50727<br> Set-Cookie: MC1=GUID=e1c82ec9c790f44fb7c92b76f8f28684&amp;HASH=c92e&amp;LV=20135&amp;V=3; domain=microsoft.com; expires=Sun, 03-Oct-2010 07:00:00 GMT; path=/<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:18 GMT</p> <p><br> DownloadManager Information: 0 : Ratings file loaded successfully<br> DownloadManager Information: 0 : Using SQL mixed mode authentication<br> DownloadManager Information: 0 : Adding product 'VWD2010SP1AzurePack'<br> DownloadManager Information: 0 : Adding dependency product 'VWD2010SP1AzurePack_2_0<br> DownloadManager Information: 0 : Adding dependency product 'VWD2010SP1Pack_1_0<br> DownloadManager Information: 0 : Adding dependency product 'AspWebPagesVS<br> DownloadManager Information: 0 : Adding dependency product 'MVC3Installer<br> DownloadManager Information: 0 : Adding dependency product 'VS10SP1_KB2748141_Only<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVS2010_1_3<br> DownloadManager Information: 0 : Adding dependency product 'MVC4Vs2010_Loc<br> DownloadManager Information: 0 : Adding dependency product 'MVC4VS2010_Only<br> DownloadManager Information: 0 : Adding dependency product 'VS2010SP1Core<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVWD2010_Only_1_3_LP<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVWD2010_Only_1_3_BaseLocale<br> DownloadManager Information: 0 : Adding dependency product 'VS2010SP1Installer<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_2_0<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_Only_2_0_LP<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_Only_2_0_BaseLocale<br> DownloadManager Information: 0 : Adding dependency product 'VWD_RTW<br> DownloadManager Information: 0 : Adding dependency product 'SQLExpress<br> DownloadManager Information: 0 : Adding dependency product 'MVC3Loc<br> DownloadManager Information: 0 : Adding dependency product 'MVC3LocInstaller<br> DownloadManager Information: 0 : Adding dependency product 'SQLCEVSTools_4_0<br> DownloadManager Information: 0 : Adding dependency product 'SQLCEVSToolsInstaller_4_0<br> DownloadManager Information: 0 : Adding dependency product 'SQLCEVSToolsInstallerNew_4_0<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_Only_2_0<br> DownloadManager Information: 0 : Adding dependency product 'VS10SP1_KB2748141<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVWD2010_Only_1_3<br> DownloadManager Information: 0 : Adding dependency product 'MVC4Vs2010_Loc_Only<br> DownloadManager Information: 0 : Setting current install to 1<br> DownloadManager Information: 0 : Starting install sequence<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe instead of downloading from http://go.microsoft.com/fwlink/?LinkID=280385&amp;clcid=0x0409<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VWD_RTW\dd6b1454fe3f90ea126cf550ae344f8e5b831786\vwd_web.exe instead of downloading from http://go.microsoft.com/?linkid=9709959<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 3724<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VS2010SP1Installer\DE33C308A5F9E6EB2CDD23C56EE069191350A792\VS10sp1-KB983509.exe instead of downloading from http://download.microsoft.com/download/2/3/0/230C4F4A-2D3C-4D3B-B991-2A9133904E35/VS10sp1-KB983509.exe<br> DownloadManager Information: 0 : Downloading file 'http://go.microsoft.com/fwlink/?LinkID=298625&amp;clcid=0x409' to: C:\Users\netai_000\AppData\Local\Temp\tmp8606.tmp<br> DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkID=298625&amp;clcid=0x409 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 22 May 2013 21:17:30 GMT<br> Location: http://download.microsoft.com/download/B/E/C/BEC2F248-00B3-49DA-B84A-83674E450DF4/WebPublishVWD2010Tools.msi<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 4.0.30319<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:30 GMT<br> Content-Length: 225</p> <p><br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WebToolsExtensionPublishingVWD2010_Only_1_3_BaseLocale\7CFB53AC7131C4817EEF67DF2800633004BF680C\WebPublishVWD2010Tools.msi' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp8606.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WebToolsExtensionPublishingVWD2010_Only_1_3_BaseLocale\7CFB53AC7131C4817EEF67DF2800633004BF680C\WebPublishVWD2010Tools.msi<br> DownloadManager Information: 0 : Downloading file 'http://go.microsoft.com/fwlink/?LinkId=270081' to: C:\Users\netai_000\AppData\Local\Temp\tmp89EF.tmp<br> DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkId=270081 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 22 May 2013 21:17:31 GMT<br> Location: http://download.microsoft.com/download/F/5/6/F56EBEBF-41A0-4E71-BAFC-6DEFA354F5A5/VS10SP1-KB2748141-x86.exe<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 4.0.30319<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 21:18:31 GMT<br> Content-Length: 224</p> <p><br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VS10SP1_KB2748141_Only\4EB3F858BE2B98F8BC22C2D138E145462D04095A\VS10SP1-KB2748141-x86.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp89EF.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VS10SP1_KB2748141_Only\4EB3F858BE2B98F8BC22C2D138E145462D04095A\VS10SP1-KB2748141-x86.exe<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi instead of downloading from http://go.microsoft.com/fwlink/?LinkId=212219&amp;clcid=0x409<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/F/4/9/F49D8CF8-BCDB-4F3A-8B8A-8D00077D7DF2/WindowsAzureTools.VS100.exe' to: C:\Users\netai_000\AppData\Local\Temp\tmp8E45.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WindowsAzureToolsVS2010_Only_2_0_BaseLocale\276785D5E9249D4D95F919C14326E90791FED28A\WindowsAzureTools.VS100.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp8E45.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WindowsAzureToolsVS2010_Only_2_0_BaseLocale\276785D5E9249D4D95F919C14326E90791FED28A\WindowsAzureTools.VS100.exe<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/F/3/1/F31EF055-3C46-4E35-AB7B-3261A303A3B6/AspNetMVC3ToolsUpdateSetup.exe' to: C:\Users\netai_000\AppData\Local\Temp\tmp9DF6.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC3Installer\7A15CA7A49AC8A9EDFE71AC0873A8AA38338C029\AspNetMVC3ToolsUpdateSetup.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp9DF6.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC3Installer\7A15CA7A49AC8A9EDFE71AC0873A8AA38338C029\AspNetMVC3ToolsUpdateSetup.exe<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/2/F/6/2F63CCD8-9288-4CC8-B58C-81D109F8F5A3/AspNetMVC4Setup.exe' to: C:\Users\netai_000\AppData\Local\Temp\tmpA402.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC4VS2010_Only\82BCBAE192F8CB875C814821A536C959F85D4727\AspNetMVC4Setup.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmpA402.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC4VS2010_Only\82BCBAE192F8CB875C814821A536C959F85D4727\AspNetMVC4Setup.exe<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Warning: 0 : Command failed. Retries left: 3<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 5936<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Warning: 0 : Command failed. Retries left: 2<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 1516<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Warning: 0 : Command failed. Retries left: 1<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 336<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Error: 0 : Install return code for product 'SQL Server Express 2008 R2 Service Pack 2' is Failure<br> DownloadManager Information: 0 : Product SQL Server Express 2008 R2 Service Pack 2 done install completed<br> DownloadManager Information: 0 : Increasing current install to 2<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer 2010 Express'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 SP1 KB983509'. Skipping install<br> DownloadManager Information: 0 : Product Visual Web Developer 2010 Express had a dependency fail. Increasing install product to 3<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 SP1 Core (SP1 only installation)'. Skipping install<br> DownloadManager Information: 0 : Product Visual Studio 2010 SP1 KB983509 had a dependency fail. Increasing install product to 4<br> DownloadManager Information: 0 : Product Visual Studio 2010 SP1 Core (SP1 only installation) had a dependency fail. Increasing install product to 5<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition (Default Locale)'. Skipping install<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition (Default Locale) had a dependency fail. Increasing install product to 6<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition Language Packs'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition - February 2013'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 family KB 2748141 Only'. Skipping install<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition Language Packs had a dependency fail. Increasing install product to 7<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition - February 2013 had a dependency fail. Increasing install product to 8<br> DownloadManager Information: 0 : Product Visual Studio 2010 family KB 2748141 Only had a dependency fail. Increasing install product to 9<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 family KB 2748141'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Studio 2010'. Skipping install<br> DownloadManager Information: 0 : Product Visual Studio 2010 family KB 2748141 had a dependency fail. Increasing install product to 10<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Studio 2010 had a dependency fail. Increasing install product to 11<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Warning: 0 : Command failed. Retries left: 3<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Warning: 0 : Command failed. Retries left: 2<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Warning: 0 : Command failed. Retries left: 1<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Error: 0 : Install return code for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is Failure (To run this application, you must first install Microsoft Visual Studio 2010 SP1 or Visual Web Developer 2010 Express SP1.)<br> DownloadManager Information: 0 : Product Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation done install completed<br> DownloadManager Information: 0 : Increasing current install to 12<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T00.18.27\SSCEVSTools-ENU.txt<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T00.18.27\SSCEVSTools-ENU1.txt<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T00.18.27\SSCEVSTools-ENU2.txt<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T00.18.27\SSCEVSTools-ENU3.txt<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 (Default Locale)'. Skipping install<br> DownloadManager Information: 0 : Product Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer had a dependency fail. Increasing install product to 13<br> DownloadManager Information: 0 : Product Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 had a dependency fail. Increasing install product to 14<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 (Default Locale) had a dependency fail. Increasing install product to 15<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 Language Packs'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 3 Tools Update Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft® Visual Studio® 2010 SP1 Tools for ASP.NET Web Pages'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 3 Tools Update Language Packs Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 3 Tools Update Language Packs'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer Express 2010 SP1 (March 2011)'. Skipping install<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 Language Packs had a dependency fail. Increasing install product to 16<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 4 Installer (VS 2010)- Default Locale'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 4 Language Packs Installer'. Skipping install<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 had a dependency fail. Increasing install product to 17<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 4 with Language Packs (August 2012)'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer Express 2010 SP1 with Azure SDK - 2.0'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer Express 2010 SP1 (Latest)'. Skipping install<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 had a dependency fail. Increasing install product to 18<br> DownloadManager Information: 0 : Product ASP.NET MVC 3 Tools Update Installer had a dependency fail. Increasing install product to 19<br> DownloadManager Information: 0 : Product Microsoft® Visual Studio® 2010 SP1 Tools for ASP.NET Web Pages had a dependency fail. Increasing install product to 20<br> DownloadManager Information: 0 : Product ASP.NET MVC 3 Tools Update Language Packs Installer had a dependency fail. Increasing install product to 21<br> DownloadManager Information: 0 : Product ASP.NET MVC 3 Tools Update Language Packs had a dependency fail. Increasing install product to 22<br> DownloadManager Information: 0 : Product Visual Web Developer Express 2010 SP1 (March 2011) had a dependency fail. Increasing install product to 23<br> DownloadManager Information: 0 : Product ASP.NET MVC 4 Installer (VS 2010)- Default Locale had a dependency fail. Increasing install product to 24<br> DownloadManager Information: 0 : Product ASP.NET MVC 4 Language Packs Installer had a dependency fail. Increasing install product to 25<br> DownloadManager Information: 0 : Product ASP.NET MVC 4 with Language Packs (August 2012) had a dependency fail. Increasing install product to 26<br> DownloadManager Information: 0 : Product Visual Web Developer Express 2010 SP1 with Azure SDK - 2.0 had a dependency fail. Increasing install product to 27<br> DownloadManager Information: 0 : Product Visual Web Developer Express 2010 SP1 (Latest) had a dependency fail. Increasing install product to 28<br> DownloadManager Information: 0 : Clearing cart<br> DownloadManager Error: 0 : System.OutOfMemoryException: Out of memory.<br> at System.Drawing.Image.FromFile(String filename, Boolean useEmbeddedColorManagement)<br> at System.Drawing.Image.FromFile(String filename)<br> at Microsoft.Web.PlatformInstaller.UI.ImageServiceImplementation.GetImage(Uri imageUri)<br> DownloadManager Information: 0 : Adding product Visual Web Developer Express 2010 SP1 with Azure SDK - 2.0 (VWD2010SP1AzurePack_2_0) to cart<br> DownloadManager Information: 0 : Using SQL mixed mode authentication<br> DownloadManager Information: 0 : Adding product 'VWD2010SP1AzurePack_2_0'<br> DownloadManager Information: 0 : Adding dependency product 'VWD2010SP1Pack_1_0<br> DownloadManager Information: 0 : Adding dependency product 'AspWebPagesVS<br> DownloadManager Information: 0 : Adding dependency product 'MVC3Installer<br> DownloadManager Information: 0 : Adding dependency product 'VS10SP1_KB2748141_Only<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVS2010_1_3<br> DownloadManager Information: 0 : Adding dependency product 'MVC4Vs2010_Loc<br> DownloadManager Information: 0 : Adding dependency product 'MVC4VS2010_Only<br> DownloadManager Information: 0 : Adding dependency product 'VS2010SP1Core<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVWD2010_Only_1_3_LP<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVWD2010_Only_1_3_BaseLocale<br> DownloadManager Information: 0 : Adding dependency product 'VS2010SP1Installer<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_2_0<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_Only_2_0_LP<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_Only_2_0_BaseLocale<br> DownloadManager Information: 0 : Adding dependency product 'VWD_RTW<br> DownloadManager Information: 0 : Adding dependency product 'SQLExpress<br> DownloadManager Information: 0 : Adding dependency product 'MVC3Loc<br> DownloadManager Information: 0 : Adding dependency product 'MVC3LocInstaller<br> DownloadManager Information: 0 : Adding dependency product 'SQLCEVSTools_4_0<br> DownloadManager Information: 0 : Adding dependency product 'SQLCEVSToolsInstaller_4_0<br> DownloadManager Information: 0 : Adding dependency product 'SQLCEVSToolsInstallerNew_4_0<br> DownloadManager Information: 0 : Adding dependency product 'WindowsAzureToolsVS2010_Only_2_0<br> DownloadManager Information: 0 : Adding dependency product 'VS10SP1_KB2748141<br> DownloadManager Information: 0 : Adding dependency product 'WebToolsExtensionPublishingVWD2010_Only_1_3<br> DownloadManager Information: 0 : Adding dependency product 'MVC4Vs2010_Loc_Only<br> DownloadManager Information: 0 : Setting current install to 1<br> DownloadManager Information: 0 : Starting install sequence<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe instead of downloading from http://go.microsoft.com/fwlink/?LinkID=280385&amp;clcid=0x0409<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VWD_RTW\dd6b1454fe3f90ea126cf550ae344f8e5b831786\vwd_web.exe instead of downloading from http://go.microsoft.com/?linkid=9709959<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 3724<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VS2010SP1Installer\DE33C308A5F9E6EB2CDD23C56EE069191350A792\VS10sp1-KB983509.exe instead of downloading from http://download.microsoft.com/download/2/3/0/230C4F4A-2D3C-4D3B-B991-2A9133904E35/VS10sp1-KB983509.exe<br> DownloadManager Information: 0 : Downloading file 'http://go.microsoft.com/fwlink/?LinkID=298625&amp;clcid=0x409' to: C:\Users\netai_000\AppData\Local\Temp\tmp5344.tmp<br> DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkID=298625&amp;clcid=0x409 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 22 May 2013 22:37:01 GMT<br> Location: http://download.microsoft.com/download/B/E/C/BEC2F248-00B3-49DA-B84A-83674E450DF4/WebPublishVWD2010Tools.msi<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 4.0.30319<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 22:38:01 GMT<br> Content-Length: 225</p> <p><br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WebToolsExtensionPublishingVWD2010_Only_1_3_BaseLocale\7CFB53AC7131C4817EEF67DF2800633004BF680C\WebPublishVWD2010Tools.msi' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp5344.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WebToolsExtensionPublishingVWD2010_Only_1_3_BaseLocale\7CFB53AC7131C4817EEF67DF2800633004BF680C\WebPublishVWD2010Tools.msi<br> DownloadManager Information: 0 : Downloading file 'http://go.microsoft.com/fwlink/?LinkId=270081' to: C:\Users\netai_000\AppData\Local\Temp\tmp577B.tmp<br> DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkId=270081 responded with 302<br> DownloadManager Information: 0 : Response headers:<br> HTTP/1.1 302 Found<br> Cache-Control: private<br> Content-Type: text/html; charset=utf-8<br> Expires: Wed, 22 May 2013 22:37:02 GMT<br> Location: http://download.microsoft.com/download/F/5/6/F56EBEBF-41A0-4E71-BAFC-6DEFA354F5A5/VS10SP1-KB2748141-x86.exe<br> Server: Microsoft-IIS/7.5<br> X-AspNet-Version: 4.0.30319<br> X-Powered-By: ASP.NET<br> Date: Wed, 22 May 2013 22:38:02 GMT<br> Content-Length: 224</p> <p><br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VS10SP1_KB2748141_Only\4EB3F858BE2B98F8BC22C2D138E145462D04095A\VS10SP1-KB2748141-x86.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp577B.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\VS10SP1_KB2748141_Only\4EB3F858BE2B98F8BC22C2D138E145462D04095A\VS10SP1-KB2748141-x86.exe<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi instead of downloading from http://go.microsoft.com/fwlink/?LinkId=212219&amp;clcid=0x409<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/F/4/9/F49D8CF8-BCDB-4F3A-8B8A-8D00077D7DF2/WindowsAzureTools.VS100.exe' to: C:\Users\netai_000\AppData\Local\Temp\tmp5AC8.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WindowsAzureToolsVS2010_Only_2_0_BaseLocale\276785D5E9249D4D95F919C14326E90791FED28A\WindowsAzureTools.VS100.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp5AC8.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\WindowsAzureToolsVS2010_Only_2_0_BaseLocale\276785D5E9249D4D95F919C14326E90791FED28A\WindowsAzureTools.VS100.exe<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/F/3/1/F31EF055-3C46-4E35-AB7B-3261A303A3B6/AspNetMVC3ToolsUpdateSetup.exe' to: C:\Users\netai_000\AppData\Local\Temp\tmp69BD.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC3Installer\7A15CA7A49AC8A9EDFE71AC0873A8AA38338C029\AspNetMVC3ToolsUpdateSetup.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp69BD.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC3Installer\7A15CA7A49AC8A9EDFE71AC0873A8AA38338C029\AspNetMVC3ToolsUpdateSetup.exe<br> DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/2/F/6/2F63CCD8-9288-4CC8-B58C-81D109F8F5A3/AspNetMVC4Setup.exe' to: C:\Users\netai_000\AppData\Local\Temp\tmp7835.tmp<br> DownloadManager Information: 0 : Content-disposition header: attachment<br> DownloadManager Information: 0 : File 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC4VS2010_Only\82BCBAE192F8CB875C814821A536C959F85D4727\AspNetMVC4Setup.exe' already exists, deleting old copy of the file<br> DownloadManager Information: 0 : Moving downloaded file 'C:\Users\netai_000\AppData\Local\Temp\tmp7835.tmp' to: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\MVC4VS2010_Only\82BCBAE192F8CB875C814821A536C959F85D4727\AspNetMVC4Setup.exe<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Warning: 0 : Command failed. Retries left: 3<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 5684<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Warning: 0 : Command failed. Retries left: 2<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 952<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Warning: 0 : Command failed. Retries left: 1<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 840<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Error: 0 : Install return code for product 'SQL Server Express 2008 R2 Service Pack 2' is Failure<br> DownloadManager Information: 0 : Product SQL Server Express 2008 R2 Service Pack 2 done install completed<br> DownloadManager Information: 0 : Increasing current install to 2<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer 2010 Express'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 SP1 KB983509'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 SP1 Core (SP1 only installation)'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition (Default Locale)'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition Language Packs'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition - February 2013'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 family KB 2748141 Only'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Studio 2010 family KB 2748141'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Web Publish 1.3 for Visual Studio 2010'. Skipping install<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : Product Visual Web Developer 2010 Express had a dependency fail. Increasing install product to 3<br> DownloadManager Information: 0 : Product Visual Studio 2010 SP1 KB983509 had a dependency fail. Increasing install product to 4<br> DownloadManager Information: 0 : Product Visual Studio 2010 SP1 Core (SP1 only installation) had a dependency fail. Increasing install product to 5<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition (Default Locale) had a dependency fail. Increasing install product to 6<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition Language Packs had a dependency fail. Increasing install product to 7<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Web Developer 2010 Express Edition - February 2013 had a dependency fail. Increasing install product to 8<br> DownloadManager Information: 0 : Product Visual Studio 2010 family KB 2748141 Only had a dependency fail. Increasing install product to 9<br> DownloadManager Information: 0 : Product Visual Studio 2010 family KB 2748141 had a dependency fail. Increasing install product to 10<br> DownloadManager Information: 0 : Product Microsoft Web Publish 1.3 for Visual Studio 2010 had a dependency fail. Increasing install product to 11<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Warning: 0 : Command failed. Retries left: 3<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Warning: 0 : Command failed. Retries left: 2<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Warning: 0 : Command failed. Retries left: 1<br> DownloadManager Information: 0 : Starting MSI install for msi 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLCEVSToolsInstallerNew_4_0\05EA0F2A6CF25658086DE71675A417DEAE8E2F85\SSCEVSTools-ENU.msi', commandline: 'ACTION=INSTALL REBOOT=ReallySuppress'<br> DownloadManager Information: 0 : MSI install return value for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is '1603'<br> DownloadManager Error: 0 : Install return code for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation' is Failure (To run this application, you must first install Microsoft Visual Studio 2010 SP1 or Visual Web Developer 2010 Express SP1.)<br> DownloadManager Information: 0 : Product Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation done install completed<br> DownloadManager Information: 0 : Increasing current install to 12<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T01.37.58\SSCEVSTools-ENU.txt<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T01.37.58\SSCEVSTools-ENU1.txt<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T01.37.58\SSCEVSTools-ENU2.txt<br> DownloadManager Information: 0 : Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer for New Installation installation log: C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\logs\install\2013-05-23T01.37.58\SSCEVSTools-ENU3.txt<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 (Default Locale)'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 Language Packs'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Windows Azure Tools 2.0 for Microsoft Visual Studio 2010'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 3 Tools Update Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Microsoft® Visual Studio® 2010 SP1 Tools for ASP.NET Web Pages'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 3 Tools Update Language Packs Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 3 Tools Update Language Packs'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer Express 2010 SP1 (March 2011)'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 4 Installer (VS 2010)- Default Locale'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 4 Language Packs Installer'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'ASP.NET MVC 4 with Language Packs (August 2012)'. Skipping install<br> DownloadManager Warning: 0 : Dependency failed for product 'Visual Web Developer Express 2010 SP1 with Azure SDK - 2.0'. Skipping install<br> DownloadManager Information: 0 : Product Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 Installer had a dependency fail. Increasing install product to 13<br> DownloadManager Information: 0 : Product Microsoft Visual Studio 2010 SP1 Tools for SQL Server Compact 4.0 had a dependency fail. Increasing install product to 14<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 (Default Locale) had a dependency fail. Increasing install product to 15<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 Language Packs had a dependency fail. Increasing install product to 16<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 had a dependency fail. Increasing install product to 17<br> DownloadManager Information: 0 : Product Windows Azure Tools 2.0 for Microsoft Visual Studio 2010 had a dependency fail. Increasing install product to 18<br> DownloadManager Information: 0 : Product ASP.NET MVC 3 Tools Update Installer had a dependency fail. Increasing install product to 19<br> DownloadManager Information: 0 : Product Microsoft® Visual Studio® 2010 SP1 Tools for ASP.NET Web Pages had a dependency fail. Increasing install product to 20<br> DownloadManager Information: 0 : Product ASP.NET MVC 3 Tools Update Language Packs Installer had a dependency fail. Increasing install product to 21<br> DownloadManager Information: 0 : Product ASP.NET MVC 3 Tools Update Language Packs had a dependency fail. Increasing install product to 22<br> DownloadManager Information: 0 : Product Visual Web Developer Express 2010 SP1 (March 2011) had a dependency fail. Increasing install product to 23<br> DownloadManager Information: 0 : Product ASP.NET MVC 4 Installer (VS 2010)- Default Locale had a dependency fail. Increasing install product to 24<br> DownloadManager Information: 0 : Product ASP.NET MVC 4 Language Packs Installer had a dependency fail. Increasing install product to 25<br> DownloadManager Information: 0 : Product ASP.NET MVC 4 with Language Packs (August 2012) had a dependency fail. Increasing install product to 26<br> DownloadManager Information: 0 : Product Visual Web Developer Express 2010 SP1 with Azure SDK - 2.0 had a dependency fail. Increasing install product to 27<br> DownloadManager Information: 0 : Clearing cart<br> DownloadManager Information: 0 : Adding product SQL Server Express 2008 R2 Service Pack 2 (SQLExpress) to cart<br> DownloadManager Information: 0 : Using SQL mixed mode authentication<br> DownloadManager Information: 0 : Adding product 'SQLExpress'<br> DownloadManager Information: 0 : Setting current install to 1<br> DownloadManager Information: 0 : Starting install sequence<br> DownloadManager Information: 0 : Using cached file at C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe instead of downloading from http://go.microsoft.com/fwlink/?LinkID=280385&amp;clcid=0x0409<br> DownloadManager Information: 0 : Starting EXE command for product 'SQL Server Express 2008 R2 Service Pack 2'. Commandline is: 'C:\Users\netai_000\AppData\Local\Microsoft\Web Platform Installer\installers\SQLExpress\2646a04848d46113d5fe6e54254e07878473a3c5\SQLEXPR32_x86_ENU.exe /q /ACTION=Install /FEATURES=SQL /INSTANCENAME=SQLEXPRESS /SQLSVCACCOUNT=&quot;NT AUTHORITY\Network Service&quot; /SQLSVCStartupType=Automatic /AddCurrentUserAsSqlAdmin /ENABLERANU=1 /hideconsole /IACCEPTSQLSERVERLICENSETERMS /SECURITYMODE=SQL /SAPWD=&quot;****&quot;'. Process Id: 1332<br> DownloadManager Information: 0 : Install exit code for product 'SQL Server Express 2008 R2 Service Pack 2' is '-1'<br> DownloadManager Error: 0 : Install return code for product 'SQL Server Express 2008 R2 Service Pack 2' is Failure<br> DownloadManager Information: 0 : Product SQL Server Express 2008 R2 Service Pack 2 done install completed<br> DownloadManager Information: 0 : Increasing current install to 2</p> 2013-05-23T12:46:03-04:002013-05-23T12:46:03.753-04:00urn:uuid:00000000-0000-0000-0000-000002051341http://forums.iis.net/p/1199018/2051341.aspx/1?Shared+IIS+configuration+domail+accountShared IIS configuration - domail account <p>Hi,</p> <p>I am (almost) new into IIS and web and I found a problem I am unable to solve on my own.</p> <p>I have build a web farm (building the second right now), and I found an error with shared IIS configuration. We have 2 IIS servers with shared IIs configuration on the third, SQL server, permissions are correct because if I want to change the configuration there is no problem from one server (primary). Once I will try to do the very same thing from the second server, it writes that I have no permission to do that. Considering that this is domain account what access the shared configuration, its very strange.</p> <p></p> <p>I am running: IIS 7.0 on NLB cluster (2 IIS, 1 SQL), all in our company domain, 1 application under DefaultAppPool with NetworkService priviledge (default?). Our web is running under domain account which has extra access to our website folder and sharedIIS folder.&nbsp;</p> <p></p> <p>Can someone help me and tell me what I am doing wrong?</p> <p>Thank You,</p> <p>Mira.</p> 2013-05-24T08:26:01-04:002013-05-24T08:26:01.517-04:00urn:uuid:00000000-0000-0000-0000-000002051361http://forums.iis.net/p/1199023/2051361.aspx/1?ARR+Route+to+Server+FarmARR Route to Server Farm <p>Hi,</p> <p>We have one site ie. <a href="http://www.sitename.com.">www.sitename.com.</a>&nbsp;we are maintaining two version of this site. 1) OLD and 2) New.</p> <p>Our requirement is like this, if user request <a href="http://www.sitename.com"> www.sitename.com</a>/&lt;XXXXX&gt;/______.aspx page&nbsp;it has to look at &lt;xxxxx&gt; and identify which site it has to render ie. OLD or New.</p> <p>To indentify site version (ie OLD or NEW) we used &quot;<a href="http://www.iis.net/learn/extensions/url-rewrite-module/using-custom-rewrite-providers-with-url-rewrite-module" title="Custom Rewrite Providers with URL Rewrite Module">Custom Rewrite Providers with URL Rewrite Module</a>&quot; which will get value from database based on &lt;XXXXX&gt; value. NOTE: Would like to request into database first time only, and after that all request would like to indentify using HTTP headers or Server variables. We cann't use Cookie for that also.</p> <p>Is there any option which can use instead of cookie so on each request we can get it's value and check that to match conditions and avoid to request into Database.</p> <p>Facing problem with underlying URLs of &quot;<span>A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script&quot; etc.</span></p> <p>Would like to avoid Outbound Rules to modify URLs, it's create lot's of other problems with Relative path, because we have same url for both site.</p> <p><strong>We are using Action = &quot;Route to Server Farm&quot; not Rewrite as Inbound Rule.&nbsp;</strong></p> <p>Please provide infomration if it's possible to do like this.</p> <p>Thanks</p> <p></p> <p></p> <p></p> <p></p> <p></p> <h1></h1> 2013-05-24T13:41:18-04:002013-05-24T13:41:18.253-04:00urn:uuid:00000000-0000-0000-0000-000002051360http://forums.iis.net/p/1199022/2051360.aspx/1?Problem+faced+after+installing+SSL+certificate+Problem faced after installing SSL certificate. <p>Hi, I faced issue after installing SSL certificate.</p> <p>Our SSL certificate was expired May 22, 2013 &amp; I install renewed SSL certificate May 20, 2013 (LB &amp; all webservers) &amp; binding also on that day. I faced problem May 22, 2013.</p> <p>Before sites works with url &nbsp;<a href="https://weburl/sitename">https://weburl/sitename</a> &nbsp;but now this URL could not work it gave error Unable to connect/Internet Explorer cannot display the webpage. I tried <a href="https://weburl/sitename/">https://weburl/sitename/</a> it works without “/“ not work.&nbsp; I check one by one all applications URL and found only redirect URL have issue. If application on Webserver 1 &amp; webserver 2 work without “/ “ &nbsp;but redirect URL need “/”.</p> <p>Our Applications work:</p> <ol> <li>We have two version of Application some Application running on Two webservers connected with LB and some on 3<sup>rd</sup> Webserver (Windows 2008 R2) we redirect that URLs from Webserver 1 &amp; webserver 2 to Webserver 3. </li><li>Load balancer (Linux) with two web servers (Windows 2008 R2) </li></ol> <p>I could not found issue. Please help me how I fix this issue.</p> <p>Is this issue in LB or Webserver?</p> 2013-05-24T13:40:35-04:002013-05-24T13:40:35.39-04:00urn:uuid:00000000-0000-0000-0000-000002050101http://forums.iis.net/p/1198102/2050101.aspx/1?Webdav+bug+or+feature+Unable+to+rename+if+changing+capitalization+onlyWebdav bug or feature ? - Unable to rename if changing capitalization only <p>Hi everyone,</p> <p>I've come across some interesting behaviour when manipulating&nbsp;a&nbsp;Webdav resource published on an IIS server.&nbsp; I've observed the behaviour&nbsp;with&nbsp;Windows 2003/IIS 6 and Windows 2008R2/IIS 7.5.</p> <p>Renaming files and folders work fine in most cases, however I try a rename which changes capitalization only - for example attempting to rename a folder testfoldera to <strong>T</strong>est<strong>F</strong>older<strong>A</strong>, I get the error message &quot;<strong>unable to read from source file or disk</strong>&quot;</p> <p>Can anyone comment on whether this is expected behaviour (i.e a feature) or a bug with Webdav? In Windows you are able to perform such a rename in Explorer even though Windows does not use capitalization in differentiating files - like Unix does.&nbsp;</p> <p>Admittedly this isn't a use case that would come up much but&nbsp;where application users are concerned&nbsp;- there's always one! <img class="emoticon" title="Laughing" border="0" alt="Laughing" src="http://i1.iis.net/fin2-cdn/scripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif"></p> <p>&nbsp;</p> 2013-05-15T15:57:04-04:002013-05-15T15:57:04.19-04:00