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

Problem with CDO.Message Windows Server 2012 r2 ASP Classic

$
0
0

Hello everyone

I am having trouble auto-mailing via ASP Classic running under Windows Server 2012 r2; the error code is as follows:

CDO.Message.1 error '80040213'

The transport failed to connect to the server.

/EnviaCorreo.asp, line 31

I was researching the error on the internet and most comment that it is due to changing port 587 to 25 since I am using an Office365 account, I pass the configuration:

Function EnviaMail(sDesde,sDestinatario,sCC,sAsunto,sCuerpo,html)
	Dim oMail,configMail

	Set oMail = Server.CreateObject("CDO.Message")
	Set configMail = Server.CreateObject ("CDO.Configuration")

	oMail.Subject = sAsunto
	oMail.From = sDesde
	oMail.To = sDestinatario
	oMail.CC = sCC
	if html then
		oMail.HTMLBody = sCuerpo
	else
		oMail.TextBody = sCuerpo
	end if

    With configMail.Fields
        .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp.office365.com"
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25  //587 doesn't work either)
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 90
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = true
        .Item("http://schemas.microsoft.com/cdo/configuration/sendusername") ="user"
        .Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") ="pass"
        .Update
	End With

    Set oMail.Configuration = configMail
	oMail.Send  // error (line 31)

	Set oMail = Nothing
    Set configMail = Nothing
End Function

Apparently the configuration is fine, but the reality is that it does not run, therefore I assume that the problem is not in the script, why I comment this, because this same script I tried on another machine that has Windows 10 and it works without problem.

Thinking that maybe we should create some exit rule in Windows Firewall, enable ports 25 and 587 to see if this allowed me to send but it does not work either.

The truth is that I don't know what else to do,… could someone help me to solve this problem.

I appreciate in advance your time and service

Cheers


Publishing an API

$
0
0

I recently had to publish an API, I did it in an application within a website, as I did for all my previous web services.

There were a DNS set up so the API should be accessed this way:

http://MyServices/MyAPI/...

But we couldn´t make it work... we get an unhandled exception when the API was invoked and not much info.
All other WCF services published there where working with no probs (http://MyServices/Service1/...http://MyServices/Service2/... etc)

When trying the services with Postman and everything seems fine, when accesing from the website (hosted in its own websitehttp://MyWebsite/) we got the unhandled exception.

Obviously, in the development server everything was working fine, just in the Staging Server (copy of Production one) was failing. But there were no differences in permissions that we could see.


After 2 days trying almost everything, I did republish it in a brand new website (for my test I used:http://MyServer:8012/ (I was testing too many things to create a DNS for each test) and it start working correctly.

My question is: Why? I solve this issue today, but now Im trying to find out why that happened.

If it helps, I was using IIS 8.5, the framework used was 4.5.2

"Gourmesso Coupons Codes "

$
0
0

Gourmesso Coupon Codes is supported by savers like you. When you buy Gourmesso promo Codes through links on our website.

This homegrown e-commerce site has carved out quite a name for itself ever since its inception. They have been in the game for years now delivering peak performance. Founded in 2007 by two alumni of IIT Delhi, this online site had initially focused on books and soon expanded into e-commerce segment by foraying into the online industry. It has a vast range and variety of products across different categories and verticals like electronics, apparel, accessories, shoes, bags, books, personal care, stationery, lifestyle products, and much more. You can find quality products from both global and local brands and manufacturers on this portal. They have enjoyed the status of being one of the busiest online e-commerce sites in the industry. 

IIS Reverse Proxy Outbound Rules

$
0
0

Hello all, sorry for being a noob, I am very much new to IIS Reverse proxy. I am trying to set up of reverse proxy which is already implemented using nginx in Linux. I am using URL redirect ad-on and ARR. What I want to do is when someone hits the https://www.mysite.com/product1/ its should send the request to https://product1.mysite.com:8443. and if someone hits https://www.mysite.com/product2/ it should send the request tohttps://product2.mysite.com:8449 and so on and so forth. The problem I am facing is when the request reaches tohttps://product1.mysite.com:8443 using  https://www.mysite.com/product1/  and the content page is opened, whenever I try to access the content of https://product1.mysite.com:8443 using https://www.mysite.com/product1/ it gives me  HTTP Error 404.0 - Not Found, 
what my understanding is it is any relative path or for that matter, absolute paths as well need to be translated to the new URL structure. 

original web,conf file is as follows:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="ReverseProxyInboundRule1" stopProcessing="true">
<match url="^product1(.*)" />
<action type="Rewrite" url="https://product1.mysite.com:8443/{R:1}" />
</rule>
<rule name="Portainer-reverse-proxy" stopProcessing="true">
<match url="^product2(.*)" />
<action type="Rewrite" url="http://product2.mysite.com:8449/{R:1}" />
</rule>
</rules>
<outboundRules>
<rule name="ReverseProxyOutboundRule1" preCondition="ResponseIsHtml1">
<match filterByTags="A, Form, Img" pattern="^/(.*)" />
<action type="Rewrite" value="/{C:1}/{R:1}" />
<conditions>
<add input="{URL}" pattern="^(product1|product2).*" />
</conditions>
</rule>
<preConditions>
<preCondition name="ResponseIsHtml1">
<add input="{RESPONSE_CONTENT_TYPE}" pattern="^text/html" />
</preCondition>
</preConditions>
</outboundRules>
</rewrite>
</system.webServer>
</configuration>

I have used this tutorial to configure the IIS Reverse proxy. https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing

Downloaded file failed signature verification and may have been tampered with

$
0
0

I receive this error "Downloaded file failed signature verification and may have been tampered with" when installing any PHP(x64) on a Windows 2016 server. I've download several versions from the Web Platform Installer. How can I resolve this error?

IIS ARR route with SSL to backend server

$
0
0
<div class="body">

Hello Guys ,

I have a question about IIS ARR + backend server farm member route.

I know that client could comminucate with ARR server with HTTPS protocol . What i need to configure and setup correctly for route this traffic to my backend server in the same protocoll HTTPS. 

ARR - Client   ---- HTTPS

ARR - Backend farm server member Web server  ----- HTTPS

By default i think its going through HTTP protocoll between ARR and backend servers

Where i need to configure certificate and also binding ?

Thank you !

</div>

Visit site via host name from other device in LAN

$
0
0

Hello,

I setup an ASP IIS site and I want to visit the page from another device in the LAN. I'm able to connect to the site using the hosts IP adress. However I need to be able to connect to the site using a custom host name.

Is setting up a DNS Server the way to go? I changed the hosts host.etc file to setup a hostname but this only works for the host device and other devices may no be computers they could also be phones or tablets so editing the devices host routing may no be the best idea.

Thank you,

Jannick

Hosting WCF on IIS 10

$
0
0

Hi

I have windows 2019 server with IIS 10. I created a new site in IIS to host wcf application. When I run the application and browse service1.svc file, I receive the following error:

<div id="content"> <div class="content-container">

HTTP Error 404.3 - Not Found

The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

Please advise.

regards

</div> </div>

How to assign certificate binding cmd

$
0
0

Hi

How possible to assign certificate from iis binding to all subsites via cmd?

possible to use by "issued by" name at the command line? must thumbprint certificate or hash?

I want simple command to import pfx certificate and assind to main web default iis and all subsites via cmd

Thanks for all

Accidently Deleted ISAPI-DLL from Website Can't get it back

$
0
0

Hi,

So following an old procedure we accidentally removed the ISAPI-dll Managed Handler for dll files on our SharePoint server, this is causing a lot of grief.

In trying to manually add it appears that you can't becuase you need to specify a .dll file which of course does not exist. 

Are there any scripts to get it back or alternatively should I look to "Re-inherit" from the top level or maybe within Sharepoint there is a way to set this back up properly?

Thanks.

Configure RFC 8449 Record Size Limit Extension for TLS

$
0
0

How is the RFC 8449 Record Size Limit Extension for TLS configured in IIS 10?
Or is it not possible?

Kind regards
Jes Holm

Don't Collect Get In Web Page IIS10

$
0
0

Hello ,

I have a problem with my IIS Server lot of loggin file generated everyday because the user stations send http requests in order to check the availability of the authority (every 2 seconds * 1500 positions maximum) which are logged by IIS servers.

As a result, a log size (daily rotation) of 500MB to 800MB, the disk capacity will quickly be reached.

So i think if it's possible to configure my IIS to not collect the  http Get for thois page : 

2020-04-17 00:00:00 8.8.8.8 GET /folder/testpage.asp - 80 -  - 200 0 0 0

It's possible? With IIS 10

Thank you 

Collage students

ASP WEBSITE ERROR

$
0
0
I have recently just transferred a site running on windows server 2008 iis7 to windows server 2019 iis10. The whole site is running using php and ASP but I cant get my crystal report viewer working for the site and in the logs I get the error - |20|ASP_0177_:_800401f3|Server.CreateObject_Failed

Trying to configure 413 exception redirect

$
0
0

I'm trying to configure my web.config to redirect the 413 statusCode. I've tried many different variations of settings, and nothing seems to be working. The two main variations I've tried are:

<customErrors mode="On" redirectMode="ResponseRewrite" defaultRedirect="/Errors/index.htm"><error statusCode="413" redirect="/Errors/413.htm" /></customErrors>

and

<httpErrors errorMode="Custom"><remove statusCode="413"/><error statusCode="413" path="/Errors/413.htm" responseMode="File"/></httpErrors>

Running on IIS10.

Any help would be appreciated.


img from mssql in table like layout

$
0
0

Hi

I have 100+ images stored in my mssql that I would like to have on a website.

I have created this loop

Response.Write("<table style='width:80%' align='center' border='1'>")
If rs.BOF And rs.EOF Then
' No data
Else
Do While (Not rs.EOF)
Response.Write "<tr><th>" & rs("image") & "<br>" & rs("titel") & "</th></tr>"
rs.MoveNext
Loop
End If
Response.Write("</table>")

It gives me a laout like 

table

tr

td

td

td

td

td

...

/tr

/table

I would like it to be 

table

tr

td td td td td td

/tr

tr

td td td td td td

/tr

tr

td .......

/tr

/table

How do I accomplish that?

[Pre-Release] WinCache for PHP 7.3 and PHP 7.4alpha1

$
0
0

I would greatly appreciate your help in validating a potential release candidate of WinCache for PHP 7.3:

 

x86: https://sourceforge.net/projects/wincache/files/development/wincache-2.0.0.8-dev-7.3-nts-vc15-x86.exe 

x64: https://sourceforge.net/projects/wincache/files/development/wincache-2.0.0.8-dev-7.3-nts-vc15-x64.exe 

 

I have simply dealt with the compilation errors introduced by moving to PHP 7.3 / Zend 3.3.0 internals.  There have been no functional changes.

 

I have run the PHP regression test suite with WinCache enabled and disabled, and nothing crashes instantly.  If you do find a reproduceable crash, please send me a code example that triggers the crash, so I can investigate.

If no issues are reported with this build, I will proceed with releasing this extension via Web Platform Installer by June 28th, 2019.

 

 

Additionally, I have a release candidate of WinCache for PHP 7.4.0alpha1:

 

x86: https://sourceforge.net/projects/wincache/files/development/wincache-2.0.0.8-dev-7.4.0alpha1-nts-vs16-x86.exe

x64: https://sourceforge.net/projects/wincache/files/development/wincache-2.0.0.8-dev-7.4.0alpha1-nts-vs16-x64.exe

 

Same deal goes for these bits as well.  If you find something, let me know. 

 

I will not create a Web Platform Installer package for WinCache for PHP 7.4 until PHP 7.4 completes its Beta cycle and is released.

 

My apologies for the delay in WinCache for PHP 7.3.

 

Thank you!

    --E.


Edit: If you downloaded the 7.4apha1 WinCache bits before 2019-06-17 23:00 UTC, and you're getting an error like:

PHP Warning:  PHP Startup: Can't load module 'C:\Program Files\PHP\v7.4\ext\php_wincache.dll' as it's linked with 14.21, but the core is linked with 14.20 in Unknown on line 0

This has been fixed with a new package.  The file name and version is the same, so you'll have to re-download & extract.

Thank you to Jan Ehrhardt over at  www.apachelounge.com for pointing this out!

II7 Rules

$
0
0

I’m trying set a redirect rule for a specific url, but it’s not working.

Basically I’m trying to obscure the admin page url to something else i.e.

If you type the url: mysite/admin

You would be redirected back to the home page and

If you typed the url: mysite/admin/hiddenAdminPage

You would then be redirected to the admin page…

I'm testing it on my local machine running Microsoft studio 2019 IIS express

<rewrite><rules>
<rule name="[RULE NAME]" stopProcessing="true"><match url="(.*)" /><conditions logicalGrouping="MatchAny" trackAllCaptures="false"><add input="{HTTP_HOST}{REQUEST_URI}" pattern="[localhost:56973/umbraco/admin]" /><add input="{HTTP_HOST}{REQUEST_URI}" pattern="www.[localhost:56973/umbraco/admin]" /></conditions><action type="Redirect" url="http://[localhost:56973/]" redirectType="Permanent"/></rule>
<rule name="[RULE NAME 2]" stopProcessing="true"><match url="(.*)" /><conditions logicalGrouping="MatchAny" trackAllCaptures="false"><add input="{HTTP_HOST}{REQUEST_URI}" pattern="[localhost:56973/umbraco/hiddenAdminPage]" /><add input="{HTTP_HOST}{REQUEST_URI}" pattern="www.[localhost:56973/umbraco/hiddenAdminPage]" /></conditions><action type="Redirect" url="http://[localhost:56973/umbraco/admin]" redirectType="Permanent"/></rule>
</rules></rewrite>

Exchange Protocol Logs

$
0
0

Hi,

Is it possible with LogParser to merge some parts of each line in to one output. Take this example:

#Fields: date-time,connector-id,session-id,sequence-number,local-endpoint,remote-endpoint,event,data,context
2020-02-10T00:05:03.076Z,EXSRV1\Relay,08D7AAB2E8D53B5B,14,10.103.242.116:25,10.103.241.30:64989,<,MAIL FROM:<email1@domain.com> SIZE=4039,
2020-02-10T00:05:03.076Z,EXSRV1\Relay,08D7AAB2E8D53B5B,16,10.103.242.116:25,10.103.241.30:64989,<,RCPT TO:<email2@domain.com> ORCPT=rfc822;email2@domain.com

I want the Mail From and Rcpt To values to be presented on one line, based on the common session-id:

MAIL FROM: <email1@domain.com> | RCPT TO: <email2@domain.com>

This is where I'm at:

"C:\Program Files (x86)\Log Parser 2.2\logparser.exe" "select EXTRACT_PREFIX(data, 0, 'ORCPT') as Recipient from *.log where data like '%RCPT TO%' and data like '%@domain.com%'" -i:CSV -nSkipLines:4 -rtp:-1

Thanks

Web Platform installer Problems in launch phase

$
0
0
I try to install web platform installer in windows 10 and it installed with errors in webpi.log as below:
As such Iam not able to install anything with Web pi, tried all methods installed web pi 3.0, 5.0, and 5.1, disabled firewall but cant use
web pi in win 10 pro iis 10, please help
The logs are as:

DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9842185
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EE7: Unknown error 12007.
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 Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Portal
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Portal
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Resource Provider
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
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://aka.ms/webapplicationlist
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EE7: Unknown error 12007.
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://aka.ms/webapplicationlist' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1138067037.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EE7: Unknown error 12007.
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://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1733029559.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EE7: Unknown error 12007.
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://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1148081224.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml
DownloadManager Error: 0 : Error downloading product file: 'System.Net.WebException: InternetOpenUrl returned 0x80072EE7: Unknown error 12007.
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://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\2036870298.xml'
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://go.microsoft.com/?linkid=9842185' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-94260733.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 0x80072EE7: Unknown error 12007.
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: The remote name could not be resolved: 'go.microsoft.com'
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.ProductServiceImpl.DownloadFile(Uri webLocation, String fileLocation)
DownloadManager Information: 0 : Loading product xml from: https://go.microsoft.com/?linkid=9842185
DownloadManager Information: 0 : https://go.microsoft.com/?linkid=9842185 responded with 302
DownloadManager Information: 0 : Response headers:
HTTP/1.1 302 Moved Temporarily
Location: https://webpifeed.blob.core.windows.net/webpifeed/WebProductList.xml
Server: Kestrel
Request-Context: appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Sat, 25 Apr 2020 06:41:32 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sat, 25 Apr 2020 06:41:32 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000 ; includeSubDomains


DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/WebProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Content-Length: 0
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 51873d11-101e-00fc-5bcc-1a06f6000000
x-ms-version: 2009-09-19
Date: Sat, 25 Apr 2020 06:41:34 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\-94260733.xml.temp
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 Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Portal
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Portal
DownloadManager Warning: 0 : Could not resolve keyword ID Backup
DownloadManager Warning: 0 : Could not resolve keyword ID Resource Provider
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID VMWare
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
DownloadManager Warning: 0 : Could not resolve keyword ID Usage
DownloadManager Warning: 0 : Could not resolve keyword ID Billing
DownloadManager Warning: 0 : Could not resolve keyword ID Hybrid Cloud
DownloadManager Warning: 0 : Could not resolve keyword ID Windows Azure Pack
DownloadManager Warning: 0 : Could not resolve keyword ID Cloud Assert
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://aka.ms/webapplicationlist
DownloadManager Information: 0 : https://aka.ms/webapplicationlist responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Location: https://webgallery.microsoft.com/feed/webapplicationlist.xml
Server: Kestrel
Request-Context: appId=cid-v1:9b037ab9-fa5a-4c09-81bd-41ffa859f01e
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Sat, 25 Apr 2020 06:41:38 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sat, 25 Apr 2020 06:41:38 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000 ; includeSubDomains


DownloadManager Information: 0 : https://webgallery.microsoft.com/feed/webapplicationlist.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 Not Modified
ETag: "8011555ea15d61:0"
Date: Sat, 25 Apr 2020 06:41:42 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\1138067037.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://aka.ms/webapplicationlist' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1138067037.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml
DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Content-Length: 0
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 51874c79-101e-00fc-62cc-1a06f6000000
x-ms-version: 2009-09-19
Date: Sat, 25 Apr 2020 06:41:43 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\1733029559.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://webpifeed.blob.core.windows.net/webpifeed/MediaProductList.xml' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\1733029559.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml
DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Content-Length: 0
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 51874d2e-101e-00fc-7dcc-1a06f6000000
x-ms-version: 2009-09-19
Date: Sat, 25 Apr 2020 06:41:43 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\-1148081224.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://webpifeed.blob.core.windows.net/webpifeed/ToolsProductList.xml' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-1148081224.xml'
DownloadManager Information: 0 : Loading product xml from: https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml
DownloadManager Information: 0 : https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml responded with 304
DownloadManager Information: 0 : Response headers:
HTTP/1.1 304 The condition specified using HTTP conditional header(s) is not met.
Content-Length: 0
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 51874e30-101e-00fc-58cc-1a06f6000000
x-ms-version: 2009-09-19
Date: Sat, 25 Apr 2020 06:41:44 GMT


DownloadManager Information: 0 : Remote file has not changed, using local cached file: C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\2036870298.xml.temp
DownloadManager Information: 0 : Filtering by current OS
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://webpifeed.blob.core.windows.net/webpifeed/EnterpriseProductList.xml' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\2036870298.xml'
DownloadManager Information: 0 : Sucessfully loaded the feed 'https://go.microsoft.com/?linkid=9842185' after preprocessing, location on disk: 'C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\preprocessor\-94260733.xml'
DownloadManager Information: 0 : Getting ratings file from http://go.microsoft.com/?linkid=9752395
DownloadManager Information: 0 : http://go.microsoft.com/?linkid=9752395 responded with 302
DownloadManager Information: 0 : Response headers:
HTTP/1.1 302 Moved Temporarily
Location: http://www.microsoft.com/web/handlers/WebPI.ashx?command=getatomfeedwithavgratingquery
Server: Kestrel
Request-Context: appId=cid-v1:b47e5e27-bf85-45ba-a97c-0377ce0e5779
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Sat, 25 Apr 2020 06:41:45 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sat, 25 Apr 2020 06:41:45 GMT
Connection: keep-alive


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '0'
DownloadManager Information: 0 : Number of bytes after possible decompression: '0'
DownloadManager Warning: 0 : Error getting last-modified header, error code: 12150
DownloadManager Warning: 0 : HttpQueryInfoWithRetry for HTTP_QUERY_LAST_MODIFIED failed.
DownloadManager Error: 0 : Error loading rating files: System.Xml.XmlException: Root element is missing.
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
at System.Xml.XmlDocument.Load(XmlReader reader)
at System.Xml.XmlDocument.Load(String filename)
at Microsoft.Web.PlatformInstaller.ProductServiceImpl.GetAppRatings()
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:43:59 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:43:59 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:43:59 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
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/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:44:00 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:00 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:44:00 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:00 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:00 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 225
Date: Sat, 25 Apr 2020 06:44:00 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:44:00 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:00 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:00 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
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/IIS_WebPlatformInstaller_GenericWizardArt.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 225
Date: Sat, 25 Apr 2020 06:44:01 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 69
Date: Sat, 25 Apr 2020 06:44:01 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:01 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15814'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
Akamai-Age-Ms: 1587797041892
X-EdgeConnect-Origin-MEX-Latency: 109
Date: Sat, 25 Apr 2020 06:44:01 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:01 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 225
Date: Sat, 25 Apr 2020 06:44:02 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15814'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:02 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 109
Date: Sat, 25 Apr 2020 06:44:02 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/IIS_WebPlatformInstaller_GenericWizardArt.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:02 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 225
Date: Sat, 25 Apr 2020 06:44:03 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 225
Date: Sat, 25 Apr 2020 06:44:03 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:03 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15820'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:03 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
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: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 225
Date: Sat, 25 Apr 2020 06:44:04 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:03 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 115
Date: Sat, 25 Apr 2020 06:44:04 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
Akamai-Age-Ms: 1587797041892
X-EdgeConnect-Origin-MEX-Latency: 109
Date: Sat, 25 Apr 2020 06:44:04 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:04 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:04 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-MediaServices2.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
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/Microsoft-PHP.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-MediaServices2.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-MediaServices2.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 116
Date: Sat, 25 Apr 2020 06:44:04 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
Akamai-Age-Ms: 1587797041892
X-EdgeConnect-Origin-MEX-Latency: 109
Date: Sat, 25 Apr 2020 06:44:04 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15818'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/sql-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:05 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:05 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 109
Date: Sat, 25 Apr 2020 06:44:05 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:05 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
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: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 115
Date: Sat, 25 Apr 2020 06:44:05 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-MediaServices2.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:06 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15818'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-PHP.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:06 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.iis.net/favicon.ico, Error: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Authentication failed because the remote party has closed the transport stream.
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.ConnectStream.WriteHeaders(Boolean async)
--- 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 Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-RemoteAdmin.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/net-option-a.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:06 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/webmatrix-stack-6-256.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:07 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.iis.net/favicon.ico, Error: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Authentication failed because the remote party has closed the transport stream.
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.ConnectStream.WriteHeaders(Boolean async)
--- 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 Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-RemoteAdmin.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-RemoteAdmin.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 211
Date: Sat, 25 Apr 2020 06:44:07 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/ApplicationWarmup.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.iis.net/favicon.ico responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Type: text/html; charset=UTF-8
Location: https://www.iis.net/favicon.ico
Server: Microsoft-IIS/10.0
Date: Sat, 25 Apr 2020 06:44:06 GMT
Content-Length: 0
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/ApplicationWarmup.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/ApplicationWarmup.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 113
Date: Sat, 25 Apr 2020 06:44:07 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.iis.net/favicon.ico responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Type: text/html; charset=UTF-8
Location: https://www.iis.net/favicon.ico
Server: Microsoft-IIS/10.0
Date: Sat, 25 Apr 2020 06:44:07 GMT
Content-Length: 0
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Error: 0 : WebClient download error. Uri: http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=phpmanager&DownloadId=164584&Build=17358, Error: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Authentication failed because the remote party has closed the transport stream.
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.ConnectStream.WriteHeaders(Boolean async)
--- 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 Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15818'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/ApplicationWarmup.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:08 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-RemoteAdmin.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:08 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://go.microsoft.com/fwlink/?LinkId=316858, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
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.iis.net/favicon.ico, Error: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Authentication failed because the remote party has closed the transport stream.
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.ConnectStream.WriteHeaders(Boolean async)
--- 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 Information: 0 : http://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=phpmanager&DownloadId=164584&Build=17358 responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Type: text/html; charset=UTF-8
Location: https://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=phpmanager&DownloadId=164584&Build=17358
Server: Microsoft-IIS/10.0
Date: Sat, 25 Apr 2020 06:44:08 GMT
Content-Length: 0
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://go.microsoft.com/fwlink/?LinkId=316858, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15818'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkId=316858 responded with 302
DownloadManager Information: 0 : Response headers:
HTTP/1.1 302 Moved Temporarily
Location: http://www.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png
Server: Kestrel
Request-Context: appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Sat, 25 Apr 2020 06:44:09 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sat, 25 Apr 2020 06:44:09 GMT
Connection: keep-alive


DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkId=316858 responded with 302
DownloadManager Information: 0 : Response headers:
HTTP/1.1 302 Moved Temporarily
Location: http://www.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png
Server: Kestrel
Request-Context: appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Sat, 25 Apr 2020 06:44:09 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sat, 25 Apr 2020 06:44:09 GMT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 114
Date: Sat, 25 Apr 2020 06:44:09 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '40510'
DownloadManager Information: 0 : Number of bytes after possible decompression: '40510'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 114
Date: Sat, 25 Apr 2020 06:44:09 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '40510'
DownloadManager Information: 0 : Number of bytes after possible decompression: '40510'
DownloadManager Error: 0 : WebClient download error. Uri: http://go.microsoft.com/fwlink/?LinkId=316858, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://go.microsoft.com/fwlink/?LinkId=316858 responded with 302
DownloadManager Information: 0 : Response headers:
HTTP/1.1 302 Moved Temporarily
Location: http://www.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png
Server: Kestrel
Request-Context: appId=cid-v1:26ef1154-5995-4d24-ad78-ef0b04f11587
X-Response-Cache-Status: True
X-Powered-By: ASP.NET
Content-Length: 0
Expires: Sat, 25 Apr 2020 06:44:09 GMT
Cache-Control: max-age=0, no-cache, no-store
Pragma: no-cache
Date: Sat, 25 Apr 2020 06:44:09 GMT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-URLRewrite.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:09 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png responded with 301
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:09 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 114
Date: Sat, 25 Apr 2020 06:44:09 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-URLRewrite.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-URLRewrite.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:09 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.modsecurity.org/g/webpi_icon.png, Error: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Authentication failed because the remote party has closed the transport stream.
at System.Net.Security.SslState.StartReadFrame(Byte[] buffer, Int32 readBytes, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.CheckCompletionBeforeNextReceive(ProtocolToken message, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
at System.Net.ConnectStream.WriteHeaders(Boolean async)
--- 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/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.modsecurity.org/g/webpi_icon.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: nginx/1.16.1
Date: Sat, 25 Apr 2020 06:44:08 GMT
Content-Type: text/html
Location: https://www.modsecurity.org/g/webpi_icon.png
Content-Length: 169
Connection: keep-alive


DownloadManager Information: 0 : http://www.iis.net/favicon.ico responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Type: text/html; charset=UTF-8
Location: https://www.iis.net/favicon.ico
Server: Microsoft-IIS/10.0
Date: Sat, 25 Apr 2020 06:44:08 GMT
Content-Length: 0
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/icons/vs-logo-sm.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:10 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://download.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=phpmanager&DownloadId=164584&Build=17358 responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 163
Content-Type: text/html; charset=UTF-8
Location: https://archive.codeplex.com/?p=download
Server: Microsoft-IIS/10.0
X-Powered-By: ASP.NET
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Content-Type-Options: nosniff
Date: Sat, 25 Apr 2020 06:44:09 GMT


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '16280'
DownloadManager Information: 0 : Number of bytes after possible decompression: '81900'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/AzureVS2012_Logo.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/icons/vs-logo-sm.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/icons/vs-logo-sm.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 113
Date: Sat, 25 Apr 2020 06:44:10 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/VisualStudioExpressWeb_256x.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:10 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Number of bytes downloaded over the internet: '40510'
DownloadManager Information: 0 : Number of bytes after possible decompression: '40510'
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/AzureVS2012_Logo.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/AzureVS2012_Logo.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
Akamai-Age-Ms: 1587797050389
X-EdgeConnect-Origin-MEX-Latency: 108
Date: Sat, 25 Apr 2020 06:44:10 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:10 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-URLRewrite.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:10 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:10 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/icons/vs-logo-sm.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:10 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:10 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/icons/vs-logo-sm.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/icons/vs-logo-sm.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/icons/vs-logo-sm.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 113
Date: Sat, 25 Apr 2020 06:44:11 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:11 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/AzureVS2012_Logo.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:10 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:11 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '665'
DownloadManager Information: 0 : Number of bytes after possible decompression: '1408'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-icon.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15814'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:11 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15818'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:11 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/icons/vs-logo-sm.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:12 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
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/Microsoft-WebDeploy.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
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: https://ajax.aspnetcdn.com/ajax/media/gallery/apps-screenshots/net-option-a.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:12 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-icon.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-icon.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
Akamai-Age-Ms: 1587797052316
X-EdgeConnect-Origin-MEX-Latency: 301
Date: Sat, 25 Apr 2020 06:44:12 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 110
Date: Sat, 25 Apr 2020 06:44:12 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-IPandDomainRestrictions.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15813'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:12 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/expression-encoder4.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/expression-encoder4.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/expression-encoder4.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 113
Date: Sat, 25 Apr 2020 06:44:13 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-IPandDomainRestrictions.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-IPandDomainRestrictions.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
Date: Sat, 25 Apr 2020 06:44:13 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:12 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15819'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:13 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-icon.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:13 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://ajax.aspnetcdn.com/ajax/media/gallery/apps-screenshots/net-option-a.png responded with 404
DownloadManager Information: 0 : Response headers:
HTTP/1.1 404 Not Found
Access-Control-Allow-Origin: *
Content-Type: text/html
Date: Sat, 25 Apr 2020 06:44:13 GMT
Server: ECAcc (tir/CD5A)
Timing-Allow-Origin: *
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Content-Length: 103


DownloadManager Error: 0 : WinInet download error. Uri: https://ajax.aspnetcdn.com/ajax/media/gallery/apps-screenshots/net-option-a.png, Error: System.Net.WebException: Url 'https://ajax.aspnetcdn.com/ajax/media/gallery/apps-screenshots/net-option-a.png' returned HTTP status code: 404
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/Microsoft-DatabaseManager2.png, Error: System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
at System.Net.WebClient.DownloadFile(Uri address, String fileName)
at Microsoft.Web.PlatformInstaller.UI.DownloadServiceImplementation.DownloadFile(Uri uri, String filePath)
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-WebDeploy.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:13 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : http://www.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-DatabaseManager2.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Content-Length: 0
Location: https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-DatabaseManager2.png
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-EdgeConnect-Origin-MEX-Latency: 115
Date: Sat, 25 Apr 2020 06:44:13 GMT
TLS_version: UNKNOWN
X-RTag: RT
Connection: keep-alive


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15819'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/expression-encoder4.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:14 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-IPandDomainRestrictions.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:14 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15816'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://developer.microsoft.com/web/media/gallery/apps-screenshots/Microsoft-DatabaseManager2.png responded with 301
DownloadManager Information: 0 : Response headers:
HTTP/1.1 301 Moved Permanently
Server: AkamaiGHost
Content-Length: 0
Location: https://developer.microsoft.com/en-us/web
Date: Sat, 25 Apr 2020 06:44:15 GMT
Connection: keep-alive
Strict-Transport-Security: max-age=31536000; includeSubDomains


DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15815'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15818'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : https://www.modsecurity.org/g/webpi_icon.png responded with 404
DownloadManager Information: 0 : Response headers:
HTTP/1.1 404 Not Found
Server: nginx/1.16.1
Date: Sat, 25 Apr 2020 06:44:16 GMT
Content-Type: text/html; charset=iso-8859-1
Content-Length: 328
Connection: keep-alive


DownloadManager Error: 0 : WinInet download error. Uri: http://www.modsecurity.org/g/webpi_icon.png, Error: System.Net.WebException: Url 'https://www.modsecurity.org/g/webpi_icon.png' returned HTTP status code: 404
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 : Content-Encoding header: 'gzip'
DownloadManager Information: 0 : Number of bytes downloaded over the internet: '15817'
DownloadManager Information: 0 : Number of bytes after possible decompression: '80884'
DownloadManager Information: 0 : Adding product Advanced Logging (AdvancedLogging) to cart
DownloadManager Error: 0 : WebClient download error. Uri: http://www.microsoft.com/web/media/gallery/apps-screenshots/webplatformsplashscreen.png, Error: System.Net.WebException: The remote name could not be resolved: 'www.microsoft.com'
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 0x80072EE7: Unknown error 12007.
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: The remote name could not be resolved: 'www.microsoft.com'
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 0x80072EE7: Unknown error 12007.
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 'AdvancedLogging'
DownloadManager Information: 0 : Adding dependency product 'Tracing
DownloadManager Information: 0 : Setting current install to 1
DownloadManager Information: 0 : Starting install sequence
DownloadManager Information: 0 : Using cached file at C:\Users\mypc\AppData\Local\Microsoft\Web Platform Installer\installers\AdvancedLogging\9BBC01A2DF2E3AD3F0E9648CE598A36480B66A49\AdvancedLogging64.msi instead of downloading from http://download.microsoft.com/download/9/6/5/96594C39-9918-466C-AFE0-920737351987/AdvancedLogging64.msi
DownloadManager Warning: 0 : Failure while contracting tracking URL http://go.microsoft.com/fwlink/?LinkId=146783. Error: System.Net.WebException: InternetOpenUrl returned 0x80072EE7: Unknown error 12007.
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ThrowGetLastErrorException(String offendingFunction)
at Microsoft.Web.PlatformInstaller.ManagedWinInet.ContactTrackingUri(Uri uri)
at Microsoft.Web.PlatformInstaller.InstallManager.WinInetDownloadInstallerFile(InstallerContext currentInstall, String& failureReason)
DownloadManager Error: 0 : Exception installing 'IIS: Tracing'. Exception: System.ComponentModel.Win32Exception (0x80004005): The process creation has been blocked
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at Microsoft.Web.PlatformInstaller.ExeInstallCommand.Run(InstallManager installManager, InstallerContext installerContext)
at Microsoft.Web.PlatformInstaller.InstallManager.DoInstall(InstallerContext currentInstall)
DownloadManager Information: 0 : Product IIS: Tracing done install completed
DownloadManager Information: 0 : Increasing current install to 2
DownloadManager Warning: 0 : Dependency failed for product 'Advanced Logging'. Skipping install
DownloadManager Information: 0 : Product Advanced Logging had a dependency fail. Increasing install product to 3
DownloadManager Information: 0 : Product: Tracing, Install Status: InstallCompleted-Failure, Install Time: 00:00:00
DownloadManager Information: 0 : Product: AdvancedLogging, Install Status: DependencyFailed-None, Install Time: 00:00:00
DownloadManager Information: 0 : Clearing cart
Viewing all 28504 articles
Browse latest View live


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