Quantcast
Channel: All Forums
Viewing all 27852 articles
Browse latest View live

WebPI not able to browse product list

$
0
0

Complete error 

Unable to download product list. Check your internet connection.

Tried setting a key in HKLM.

IE is blocked with security certificate errors, please confirm, can that cause this issue, whether WebPI uses IE in the background??

default browser is mozilla.

Tried Uninstalling Installing.

PLease respond its urgent.


Azure IIS routing with Angular2 --> 404

IIS 8.5 on Win Server 2012R2 Application Intialization URl is not tracked in IIS logs

$
0
0

Hello,

I successfully configured application intialization on IIS 8.5 and it works (use url "/startup/appinit") 

But I cannot find this URL in IIS logs that are per server and include all requests for all sites on the Web Server.

Does the IIS trigger app init URL without using the HTTP.SYS driver that prevents url to be tracked in IIS logs or this is lack of the app initialialization configuration?

I looked through the articles 

https://www.iis.net/configreference/system.webserver/applicationinitialization

and 

http://www.iis.net/learn/get-started/whats-new-in-iis-8/iis-80-application-initialization

but not found any information regarding disabled logging of application initalization page.

UPD:

Found the article 

https://blogs.msdn.microsoft.com/vijaysk/2012/10/11/iis-8-whats-new-website-settings/

When you set preloadEnabled to true, IIS will simulate a user request to the default page (can be changed with initializationPagemetabase setting) of the website/virdir so that the application initializes.

The request is not logged in the IIS logs.

But you can trace this with FREB. Every time you restart your application pool you will see a FREB trace file for the dummy request. You can identify this request by analysing the GENERAL_REQUEST_HEADERS and looking at the User-Agent string.

User-Agent: IIS Application Initialization Preload

Read IIS site name/ID during ASP.NET application_start event

$
0
0

This applies to IIS7+ in Integrated mode.

Is it possible for ASP.Net applications to read the IIS website name and/or ID value during theapplication_start event?  Please note I am not looking for domain/URL data, just the IIS website data.  At a push, the IIS application pool name would suffice instead.

I have the same web application duplicated within IIS, and each needs to read in its own configuration data from an external file duringapplication_start.  I have tried the following approaches below, but none actually work within application_start because theRequest object isn't available at that stage (I know why, having researched this):

protected void Application_Start(object sender, EventArgs e)
{
    string siteName = string.Empty;
// All of the approaches below work perfectly outside of Application_Start,
// but fail here with "Response is not available in this context."
// siteName = Server.MapPath("/"); // siteName = Server.MapPath("~"); // siteName = HttpRuntime.AppDomainAppPath; // siteName = HttpRuntime.AppDomainAppVirtualPath; // siteName = AppDomain.CurrentDomain.BaseDirectory; // siteName = HostingEnvironment.MapPath("/"); // siteName = HostingEnvironment.MapPath("~"); // siteName = HttpRuntime.AppDomainAppPath;
ClassLibrary1.Settings.LoadCommonSettings(siteName); }

I assume there must be a way to retrieve this data, as by the very nature that IIS is running the site, IIS "knows" this information.

I can see that Microsoft.Web.Administration offers some logic for reading this type of data, but I can't locate thecurrent site when iterating through...

var sm = new ServerManager();
foreach(Site s in sm.Sites)
{
	Trace.Warn(s.Name);
	Trace.Warn(s.Id.ToString());
}

...Or perhaps I'm looking in the wrong place?

Logging to different sites to different directories

$
0
0

We've installed the IIS advanced logging module, configured log definitions at the server root level which is all working fine. However my server has multiple sites on it. I'd like logs for each site to go to its own folder. 

So say for instance

Site1:
IIS Site Name: www.domain1.com 
Log Path: C:\inetpub\logs\AdvancedLogs\www.domain1.com\

Site2:
IIS Site Name: www.domain2.com
Log Path: C:\inetpub\logs\AdvancedLogs\www.domain2.com\

That way logs for the two sites are separated. Right now IIS advanced logging is just dumping all the logs into the same folder which makes it very difficult to differentiate which log is for which site.

I think I could do this if I configure Advanced Logging at the individual site level but I don't want to do that for a variety of reasons:

1) I have a complex log definition and I don't want to set it up multiple times. 
2) As new sites get added to the server I don't want to have to manually re-set it up each time. I'd like for it to just inherit and automatically work.
3) If I need to make a change to the definitions I know that all the sites will be updated simultaneously. There's no possibility of a single site being configured differently. 

Is this possible? 

Thanks
Brad

assembly loading failed

$
0
0

Hi,

I have an asp.net application in IIS with .net 4.5.  When I am trying to deploy the web application to IIS. I got the error message ‘Could not load file or assembly 'Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. I have tried to regesiter the assembly with regiis.exe but it seems doesn't work. I have even tried copy to local. However it seems doesn't work as well.

Any suggestions will be appreciated: D

How do I remove a SSL certificate from a site that I published?

$
0
0

(I hope that this is the appropriate forum to post this question to. If it isn't, I'm sorry.)

I'm working on a small Intranet ASP.NET MVC application I'm writing using Visual Studio 2015. So its using .NET 4.6.1. Its to be used by myself and one or two other people (1 developer, 1 DBA) who have to do some rather mundane tasks on a regular basis for another, third party Intranet app.

I've gotten it to a point where the DBA and I both felt it was time to put it onto a test web server so that we could both work with it. Besides, she doesn't have Visual Studio installed on her system, so she can't run it. It runs against the test database.

I've published web applications from Visual Studio (VS) before to IIS, but the one thing I've not done before is handled the SSL certificate. This application deals with sensitive information. Even though it is an in-house application I still thought it best to use SSL, so when I went to publish it from VS I choose to use SSL. Naturally VS elected to use port 443. I just went with the default. It then wanted to add a certificate. Like I said, I've not dealt with that in the past (other people have), so this is likely where I made my mistake. VS suggested some certificates for me to choose from. I thought the best thing to do would be to use the same certificate used by the test version of the third party Intranet app. That appears to be wrong. I had previously set up an application pool in IIS on the server (a Windows 2008 R2 server, with IIS 7.) The new pool I had was using the correct version of .NET. I've been in my current position a little over a year, so I'm following precedent whenever I do something new. I saw that none of the sites in IIS had more than 1 application under them. So I created my new site at the same level as the Default Web Site in IIS. Then from within VS on my developer box, I published into that site.

Here's where things started to show that I'd done something wrong. After publishing my site I tried to run it, that failed. I noticed the site wasn't started, so I got into IIS and tried to start it. IIS wouldn't let me. It gave me an error:

This Web site cannot be started. Another Web site may be using the same port.

Well, yes another website is using port 443. The test version of the third party Intranet site is using it. I really thought they wouldn't interfere with one another. Put differently, I thought that since the sites have different names, IIS could handle them using the same port number. I appear to be mistaken about that. (This is the first time I knew that a port number is unique in IIS to all sites in IIS.)

So naturally I wanted to do something. Either change my site to no longer be at the same level as the Default Web Site (maybe put it under the Default Web Site as an application). Or delete it, or something. This is where I'm having another problem. I cannot move it nor can I delete it. IIS warns me that if I do either of these I'll have to disassociate the certificate from the test version of the third party web app. I don't want to do that.

Right now the test version of the third party web app is running fine. I can easily bring up data. Those few people who use it (it is a test version pointing to the test database, so only a few people actually use it) can get to it and the data it has fine. But how to I disconnect my site from the certificate I've assigned it to?

hidden segments blocking access from the server

$
0
0

Hello. I am trying to setup hidden segments to prevent access to a folder from the internet. I have set it up and it works, I cannot access the folder from the internet. I get a 404 error.

However I have task scheduler set to run a program on the server called wget, and it needs to access the files in the hidden segment folder, but it is getting a 404 error.

The wget command is... (from my understanding of the program. I have to use a url for it to find the php file so it can execute it.)

 wget localhost/hiddenfolder/file.php


I get the response...

Resolving localhost... 127.0.0.1
Connecting to localhost|127.0.0.1|80... connected.
HTTP request send, awaiting response... 404 Not Found.
2016-10-17 08:46:23 ERROR 404: Not Found.

I am using windows Server 2008 R2, IIS 7

The hidden segment code is...

<?xml version="1.0" encoding="UTF-8"?><configuration><system.webSever><security><requestFiltering><hiddenSegments><add segment="crons" /></hiddenSeqments></requestFiltering></security></system.webServer></configuration>

Any help that would allow me to run the tasks without allowing access to the folder from the internet be greatly appreciated.


IIS sites are down, can't start any IIS-related services

$
0
0

Hello everyone,

We have a dev environment which was exploited one way or another by different users, and as an output, I found out that iis is completely down. While trying to start any IIS-related services, I get the following:

1. An error occurred while using SSL configuration for endpoint site_url:port.  The error status code is contained within the returned data.

2. The HTTP Service service failed to start due to the following error:
Cannot create a file when that file already exists.

3. The World Wide Web Publishing Service service depends on the HTTP Service service which failed to start because of the following error: 

Cannot create a file when that file already exists.

We have a SharePoint running on that machine and reinstalling IIS is not an option. There are no backups for that environment either.

What I tried:

-Checked similar issues on the internet and there is nothing which would help me further with this errors

-Tried to check folder permissions, especially on C:\Windows\System32\inetsrv\config\schema and temp/appPools folders

-Checked if these files (in schema folder) were modified or missing

-Checked process monitor and explorer to try and filter on InetMgr.exe and nothing - it shows endless SUCCESS.

I also get:

PS  netsh http show sslcert

SSL Certificate bindings:
-------------------------

The handle is invalid.

Is there is anyway I can troubleshoot this further? Perhaps other tools to try and see the situation on a "deeper" level?

Thank you very much,

IC

"UploadFile" with "PUT" - ERROR

$
0
0

I am using "UploadFile" with "PUT" method, VB linhk Htttp. But not save the file, it gives error 403.

If you put the verb "*" in "OPTIONSVerbHandler" fails to give an error, but does not save any file.

What will be missing in the IIS configuration 8?

thank you help.

Help with matching date with database

$
0
0

Hello, 

Im trying to get a date from a textbox and check it against dates in a database table.
table entry looks like this - "2016-10-15 00:00:00.000"
It would give an alert warning if it matches saying that the date is a holiday.

Thanks for any help!


function CheckPublicHolidays(){<%

    txtdate = document.Form.ProStartDate.value

    ' get campus public holidays so as not to book start date
    sqlhol = "Select id, date, descr from CampusHolidays"set rs1 = conn.execute(sqlhol)if not (rs1.eof and rs1.bof) thendountil rs1.eof'rdate = rs1("date")
        rdate =  Month(rs1("date")) & "/"& Day(rs1("date")) & "/"& Year(rs1("date")) & ""if rdate = txtdate  then%>
              alert("Matched date with <%& rs1(descr)%>");
                exit <%else%>
                alert("no match");
                exit <%endif

            rs1.movenext
        loopEndif%>

}

Cookie Does Not Contain The "secure" Attribute

$
0
0

Hi!

Recently the vulnerability was found on our site - "Cookie Does Not Contain The "secure" Attribute".

And adviced the solution: 

"If the associated risk of a compromised account is high, apply the "secure" attribute to cookies and force all sensitive requests to be sent via HTTPS."

Windows Server 2008, IIS 7.

Could  someone please help me how to set "secure" attribute to all cookies in IIS 7 ?

IIS7 bindings not working and display default website

$
0
0

Hi,

I have a strange behaviour on one of our IIS7 server.

Here is the configuration :

- 2 IIS7 on Win 2008r2 with shared configuration, load-balanced on a public IP through a Cisco CSS

- 2 websites on these servers :

  • one is the default website (with no bindings excepted the default ones)
  • one is hosting an internal sapplication where we have hundreds of hosts bindings.

For most of the hosts we are adding to the internalapplication, we don't have any problem : we manually add a new host on the first server (through the IIS7 management console), it is added on the second one and both servers are working fine.

But from time to time, the binding is not working on the second server : when we call the new host in  browser (or curl), the page displayed is the default site instead of the application site.

In this case :

- the host is working correctly on the first server (ie display the correct page instead of the one of the default website),

- the host is present on the bindings of the second server

- the DNS are corrects (even by specifying the private IP of the second server in my host file, for example)

- rebooting the server does nothing.

- trying to remove then add again the binding from the second server does nothing (still arriving on the default web site).

- the log files (on event manager) don't show any errors.

Do you have any idea of how to solve this annoying problem ?

Tank you for your help,

Fred

redirect from one domain to another (with different canonical url's)

$
0
0

I need to redirect a site that has slightly different urls to a new site but every time it just redirects to the base url.

Here is my web.config file

<rewrite><rewriteMaps configSource="rewritemaps.config" /><rules><rule name="Redirect oldsite.com to newsite.com" stopProcessing="true"><match url=".*" /><conditions><add input="{HTTP_HOST}" pattern="^www.oldsite.com$" /></conditions><action type="Redirect" url="https://www.newsite.com" redirectType="Permanent" appendQueryString="false" /></rule></rules></rewrite>

And here is my external file containing some simple rules

<rewriteMaps><rewriteMap name="Redirects"><add key="/checkout/cart/" value="/cart"/><add key="/contacts" value="/ContactUs"/><add key="/contact-us" value="/ContactUs"/><add key="/customer/account/" value="/customer/info"/><add key="/customer/account/login/" value="/login"/><add key="/customer-service" value="/why-us"/><add key="/sales/guest/form/" value="/order/history"/><add key="/why-us-cat/about-us-cat" value="/about-us-2"/></rewriteMap></rewriteMaps>

So if i hit www.oldsite.com/contacts , i would expect it to redirect to www.newsite.com/ContactUs but it just redirects to www.newsite.com.

IIS on W7: restrict access to local user and helpdesk (Powershell)

$
0
0

Hi,

 

I'd like to run a health check report on a W7 computer on a daily basis and therefore run an IIS to show it.

However, I’d need to restrict access to local user and helpdesk-group. How can I do this (I’d need to do this automated so Powershell would be needed).

 

Please advise.
J.


IIS URL Rewrite rule - test works but no results

$
0
0

I’m having trouble writing a URL Rewrite rule for IIS 8.5. My expertise writing rules is barely intermediate, and the documentation has not been helpful.

I’m trying to redirect the following URL:

hostname.com/sub1/sub2/sub3/sub4

to this URL:

hostname.com/sub1/sub6/sub7/sub2/sub4

And by that, I mean —

* hostname.com is a variable. There are multiple hostnames served by this single .NET application.
* sub1 stays the same and is not a variable.
* sub2 is the sub that should trigger the pattern and is not
a variable, however it gets moved to a different place in the URL.
* Given the previous two points, I assume the string ‘sub1/sub2’
should be hardcoded into the pattern to identify the URLs to
transform and to avoid redirect loops.
* sub3 gets deleted.
* sub4 is a variable.
* sub6 and sub7 are not variables.

I know I'm using the term variable incorrectly - what I mean by variable is that those parts of the URL change and need to be captured and used as back references.

Let me clarify with an example:

https://hostname.com/application/catalog/v3g5h6j8k9/feline-footwear

to ->

https://hostname.com/application/showcase/default/catalog/feline-footwear

All my attempts at writing a rule failed. I’m sure I’m doing everything wrong.

I thought I got close with this. The pattern tests all succeeded, but it would not pick up the incoming URL. I just get a 404:

<rule name=“Catalog redir” enabled=“true” stopProcessing="true">
<match url=“^(.*)/application/catalog/(.*)/(.*)” />
<action type="Redirect" url=“{R:1}/application/showcase/default/catalog/{R:3}” redirectType="SeeOther" />
</rule>

I’ve also tried using ([a-zA-Z0-9_+-]+) instead of (.*)

Also, I have this rule installed at the /application level of the tree, not the root. Could this be incorrect? Or better posed, how does the location of the rule in the web site tree correlate to the pattern? I couldn't find that in the docs either.

Thanks in advance for any advice.

Setup IIS Load balancer for HTTPs site

$
0
0

Hello All,

I followed following links to setup Load balancer for https site.

<div class="WordSection1">

https://www.iis.net/learn/extensions/configuring-application-request-routing-arr/http-load-balancing-using-application-request-routing
https://technet.microsoft.com/en-us/library/jj129387(v=ws.11).aspx

Challenge is I am getting 404 on request to site in browser.

Any help is higly appreciated.

</div>

Thanks,

Sandeepkumar Gupta

how to enable static content in IIS 7.5 within windows server 2008 R2

$
0
0

Hi All,

How to enable static content for IIS 7.5 within windows server 2008 R2,

Below picture is for windows 7, I am not finding this option within windows server 2008 R2.

enter image description here

Wordpress Installation Fails: Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.

$
0
0

Trying to install Wordpress on a Windows Web Server 2008 and the installation fails at the pre-requisites. I can select the product from WPI product list and I can get to the point where it says I need to accept the EULA and then it fails, then it gives this error:

Wordpress Install fail

The server has internet access, does not use a proxy and the firewall is allowing incoming and outgoing on ports 80 and 443. There isn't a problem accessing the file 'http://www.microsoft.com/web/webpi/5.0/webproductlist.xml' from a web browser, so I've run into a dead end trying to figure out what's wrong. Looking at the log file, the error "System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029" shows up a number of times, which indicates some kind of network error. 

Are there any other suggestions or ideas for getting past this error? 

----------

DownloadManager Information: 0 : Loading product xml from: http://www.microsoft.com/web/webpi/5.0/webproductlist.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.ProductManager.DownloadFile(Uri url, String cacheFileLocation, DateTime productFileLastModified)
at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)
DownloadManager Warning: 0 : Could not resolve keyword ID 5nine
DownloadManager Warning: 0 : Could not resolve keyword ID Security
DownloadManager Warning: 0 : Could not resolve keyword ID 5nine
DownloadManager Warning: 0 : Could not resolve keyword ID Security
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Cruiser
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Showback
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Cruiser
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Showback
DownloadManager Warning: 0 : Could not resolve keyword ID Terawe
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/webapplicationlist.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.ProductManager.DownloadFile(Uri url, String cacheFileLocation, DateTime productFileLastModified)
at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/webapplicationlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-97141593.xml'
DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/mediaproductlist.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.ProductManager.DownloadFile(Uri url, String cacheFileLocation, DateTime productFileLastModified)
at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/mediaproductlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-230948881.xml'
DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/ToolsProductList.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.ProductManager.DownloadFile(Uri url, String cacheFileLocation, DateTime productFileLastModified)
at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1135381691.xml'
DownloadManager Information: 0 : Loading product xml from: https://www.microsoft.com/web/webpi/5.0/enterpriseproductlist.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.ProductManager.DownloadFile(Uri url, String cacheFileLocation, DateTime productFileLastModified)
at Microsoft.Web.PlatformInstaller.ProductManager.Load(Uri productFileUrl, Boolean filterByArchitectureAndOS, Boolean loadEnclosures, Boolean useCachedVersion, String cacheDirectory, Architecture architecture, Int32 osType)
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://www.microsoft.com/web/webpi/5.0/enterpriseproductlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1877981721.xml'
DownloadManager Information: 0 : Sucessfully loaded the feed 'http://www.microsoft.com/web/webpi/5.0/webproductlist.xml' after preprocessing, location on disk: 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1642810832.xml'
DownloadManager Information: 0 : Getting ratings file from http://go.microsoft.com/?linkid=9752395
DownloadManager Error: 0 : Error getting ratings file: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.ProductServiceImpl.DownloadFile(Uri webLocation, String fileLocation)
DownloadManager Error: 0 : WebClient download error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.ProductServiceImpl.DownloadFile(Uri webLocation, String fileLocation)
DownloadManager Information: 0 : Loading ratings file from cache C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\1055370499.xml
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=f67accd3-8455-4830-b1d7-eef8959c0325, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=10af80e0-52ae-4ae1-aa9b-4a73740ebebb, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=478b578a-c2c2-4da8-b06d-c432b492510f, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=10af80e0-52ae-4ae1-aa9b-4a73740ebebb, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=478b578a-c2c2-4da8-b06d-c432b492510f, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=f67accd3-8455-4830-b1d7-eef8959c0325, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=e0dd4003-7c04-4137-b1b3-ac9088a60f7a, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/handlers/webpi.ashx?command=getimage&guid=e0dd4003-7c04-4137-b1b3-ac9088a60f7a, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Adding product WordPress (WordPress) to cart
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Adding product 'WordPress'
DownloadManager Information: 0 : Adding dependency product 'WinCache54
DownloadManager Information: 0 : Adding dependency product 'PHP54
DownloadManager Information: 0 : Adding dependency product 'FastCGIBackport
DownloadManager Information: 0 : Adding dependency product 'VC9Redist
DownloadManager Information: 0 : Adding dependency product 'runphp
DownloadManager Information: 0 : Removing product WordPress (WordPress) from cart
DownloadManager Information: 0 : User has canceled the current installation
DownloadManager Information: 0 : Adding product WordPress (WordPress) to cart
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
--- End of inner exception stack trace ---
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Error: 0 : WinInet download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Adding product 'WordPress'
DownloadManager Information: 0 : Adding dependency product 'WinCache54
DownloadManager Information: 0 : Adding dependency product 'PHP54
DownloadManager Information: 0 : Adding dependency product 'FastCGIBackport
DownloadManager Information: 0 : Adding dependency product 'VC9Redist
DownloadManager Information: 0 : Adding dependency product 'runphp
DownloadManager Information: 0 : Setting current install to 1
DownloadManager Information: 0 : Starting install sequence
DownloadManager Information: 0 : Downloading file 'https://sourceforge.net/projects/phpinstallermsi/files/zip/runphp.zip/download' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C56.tmp
DownloadManager Error: 0 : Error while downloading file 'https://sourceforge.net/projects/phpinstallermsi/files/zip/runphp.zip/download'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Warning: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Retrying download for 'RunPHP Helper'
DownloadManager Information: 0 : WebClient downloading file 'https://sourceforge.net/projects/phpinstallermsi/files/zip/runphp.zip/download' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C57.tmp
DownloadManager Error: 0 : WebClient error while downloading file 'https://sourceforge.net/projects/phpinstallermsi/files/zip/runphp.zip/download'. Exception: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.OpenRead(Uri address)
--- End of inner exception stack trace ---
at System.Net.WebClient.OpenRead(Uri address)
at Microsoft.Web.PlatformInstaller.InstallManager.WebClientDownloadInstallerFile(InstallerContext currentInstall, String& errorMessage)
DownloadManager Warning: 0 : WebClient failure: An exception occurred during a WebClient request.. Retrying download for 'RunPHP Helper'
DownloadManager Information: 0 : Downloading file 'https://sourceforge.net/projects/phpinstallermsi/files/zip/runphp.zip/download' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C58.tmp
DownloadManager Error: 0 : Error while downloading file 'https://sourceforge.net/projects/phpinstallermsi/files/zip/runphp.zip/download'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Error: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Download failure for RunPHP Helper.
DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/3/5/0/35005236-15F7-4957-8E76-BC795E53FFD9/Windows6.0-KB980363-v2-x86.msu' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C59.tmp
DownloadManager Error: 0 : Error while downloading file 'http://download.microsoft.com/download/3/5/0/35005236-15F7-4957-8E76-BC795E53FFD9/Windows6.0-KB980363-v2-x86.msu'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Warning: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Retrying download for 'Update for IIS 7.0 FastCGI (KB980363)'
DownloadManager Information: 0 : WebClient downloading file 'http://download.microsoft.com/download/3/5/0/35005236-15F7-4957-8E76-BC795E53FFD9/Windows6.0-KB980363-v2-x86.msu' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C99.tmp
DownloadManager Error: 0 : WebClient error while downloading file 'http://download.microsoft.com/download/3/5/0/35005236-15F7-4957-8E76-BC795E53FFD9/Windows6.0-KB980363-v2-x86.msu'. Exception: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.OpenRead(Uri address)
--- End of inner exception stack trace ---
at System.Net.WebClient.OpenRead(Uri address)
at Microsoft.Web.PlatformInstaller.InstallManager.WebClientDownloadInstallerFile(InstallerContext currentInstall, String& errorMessage)
DownloadManager Warning: 0 : WebClient failure: An exception occurred during a WebClient request.. Retrying download for 'Update for IIS 7.0 FastCGI (KB980363)'
DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/3/5/0/35005236-15F7-4957-8E76-BC795E53FFD9/Windows6.0-KB980363-v2-x86.msu' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C9A.tmp
DownloadManager Error: 0 : Error while downloading file 'http://download.microsoft.com/download/3/5/0/35005236-15F7-4957-8E76-BC795E53FFD9/Windows6.0-KB980363-v2-x86.msu'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Error: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Download failure for Update for IIS 7.0 FastCGI (KB980363).
DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C9B.tmp
DownloadManager Error: 0 : Error while downloading file 'http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Warning: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Retrying download for 'Microsoft Visual C++ 2008 Redistributable Package'
DownloadManager Information: 0 : WebClient downloading file 'http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C9C.tmp
DownloadManager Error: 0 : WebClient error while downloading file 'http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'. Exception: System.Net.WebException: An exception occurred during a WebClient request. ---> System.Configuration.ConfigurationErrorsException: Error creating the Web Proxy specified in the 'system.net/defaultProxy' configuration section. ---> System.IO.FileNotFoundException: Could not load file or assembly 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca' or one of its dependencies. The system cannot find the file specified.
File name: 'ProxyCredProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=5e3bf8f3a8a14cca'
at System.RuntimeTypeHandle._GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark, Boolean loadTypeFromPartialName)
at System.RuntimeTypeHandle.GetTypeByName(String name, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.RuntimeType.PrivateGetType(String typeName, Boolean throwOnError, Boolean ignoreCase, Boolean reflectionOnly, StackCrawlMark& stackMark)
at System.Type.GetType(String typeName, Boolean throwOnError, Boolean ignoreCase)
at System.Net.Configuration.DefaultProxySectionInternal..ctor(DefaultProxySection section)
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

--- End of inner exception stack trace ---
at System.Net.Configuration.DefaultProxySectionInternal.GetSection()
at System.Net.WebRequest.get_InternalDefaultWebProxy()
at System.Net.HttpWebRequest..ctor(Uri uri, ServicePoint servicePoint)
at System.Net.HttpRequestCreator.Create(Uri Uri)
at System.Net.WebRequest.Create(Uri requestUri, Boolean useUriBase)
at System.Net.WebRequest.Create(Uri requestUri)
at System.Net.WebClient.GetWebRequest(Uri address)
at Microsoft.Web.PlatformInstaller.AutoProxyHttpWebClient.GetWebRequest(Uri address)
at System.Net.WebClient.OpenRead(Uri address)
--- End of inner exception stack trace ---
at System.Net.WebClient.OpenRead(Uri address)
at Microsoft.Web.PlatformInstaller.InstallManager.WebClientDownloadInstallerFile(InstallerContext currentInstall, String& errorMessage)
DownloadManager Warning: 0 : WebClient failure: An exception occurred during a WebClient request.. Retrying download for 'Microsoft Visual C++ 2008 Redistributable Package'
DownloadManager Information: 0 : Downloading file 'http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe' to: C:\Users\Administrator\AppData\Local\Temp\2\tmp8C9D.tmp
DownloadManager Error: 0 : Error while downloading file 'http://download.microsoft.com/download/1/1/1/1116b75a-9ec3-481a-a3c8-1777b5381140/vcredist_x86.exe'. Exception: System.Net.WebException: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.OpenUrlAndFollowRedirects(Uri& uri, IntPtr& hInetFile)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.DownloadFile(Uri uri, String fileName, String& contentDispositionFileName)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Error: 0 : WinInet failure: InternetOpenUrl returned 0x80072EFD: Unknown error 12029.. Download failure for Microsoft Visual C++ 2008 Redistributable Package.
DownloadManager Warning: 0 : Dependency failed for product 'PHP 5.4.24'. Skipping download.
DownloadManager Warning: 0 : Dependency failed for product 'Windows Cache Extension 1.3 for PHP 5.4'. Skipping download.
DownloadManager Warning: 0 : Dependency failed for product 'WordPress'. Skipping download.
DownloadManager Information: 0 : Product PHP 5.4.24 had a dependency fail. Increasing install product to 2
DownloadManager Information: 0 : Product Windows Cache Extension 1.3 for PHP 5.4 had a dependency fail. Increasing install product to 3
DownloadManager Information: 0 : Product WordPress had a dependency fail. Increasing install product to 4
DownloadManager Information: 0 : Product: runphp, Install Status: DownloadFailed-None, Install Time: 00:00:00
DownloadManager Information: 0 : Product: FastCGIBackport, Install Status: DownloadFailed-None, Install Time: 00:00:00
DownloadManager Information: 0 : Product: VC9Redist, Install Status: DownloadFailed-None, Install Time: 00:00:00
DownloadManager Information: 0 : Product: PHP54, Install Status: DependencyFailed-None, Install Time: 00:00:00
DownloadManager Information: 0 : Product: WinCache54, Install Status: DependencyFailed-None, Install Time: 00:00:00
DownloadManager Information: 0 : Product: WordPress, Install Status: DependencyFailed-None, Install Time: 00:00:00

------------------------

IIS sending empty file for Script file requests instead of the file.

$
0
0

Background info:

I'm running windows 10 IIS service on my local machine for web development using VS 2015 Pro. Trying to get to the point of debugging my web application, a MVC asp 4.52 app.

My problem is that when I load my site IIS send empty files for the file requests from the Scripts and Contents directories. I've check that the files exist ( I can see them in VS, and using file explorer, and even within the IIS dashboard in "Content mode").  Below is an example of the problem (from the browser's development window) when I try to load a script file.

Name                                                                                                                  Protocol Method Result Content type Received Time Initiator
http://local-dashboard.aquaticinnovationsresearch.com/Scripts/epoch.min.js HTTP      GET       200                            0 B          72.26 ms document

Any suggestions as to what I might be doing wrong, or some configuration that I've missed?

Viewing all 27852 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>