Can the web deploy agent run on a port other than 80 on IIS6?

There’s a couple of ways to do this: Option 1: Uninstall and re-install Specifying a different port: msiexec /I WebDeploy_x86_en-US.msi /passive ADDLOCAL=ALL LISTENURL=http://+:8172/MsDeployAgentService The command line installs the MsDeployAgentService and configures it to listen on port 8172 just like on IIS7. Option 2: Re-configure Existing Service to listen on port 8172: Stop the msdepsvc (net … Read more

What are the IIS sc-win32-status codes?

Here’s the list of all Win32 error codes. You can use this page to lookup the error code mentioned in IIS logs: http://msdn.microsoft.com/en-us/library/ms681381.aspx You can also use command line utility net to find information about a Win32 error code. The syntax would be: net helpmsg Win32_Status_Code

How do I enable upload of large files in classic ASP on IIS 7?

The maxAllowedContentLength controls how much data is allowed to be sent in a response. However you want to control how much can be accepted in a request. This is handled by the maxRequestEntityAllowed attribute of the limits element in the asp section of the config file. An example might look like:- <system.webServer> <asp> <cache diskTemplateCacheDirectory=”%SystemDrive%\inetpub\temp\ASP … Read more

How to disable HTTP/2 on IIS 10

To disable HTTP/2 on Windows 10 HTTP.SYS, set the following registry value on the Windows 10 desktop in HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\HTTP\Parameters EnableHttp2Tls REG_DWORD 0 EnableHttp2Cleartext REG_DWORD 0 The second of these is only necessary if the failure is with HTTP. The first is for HTTPS.

An error occurred in the secure channel support – Classic ASP HTTP Request

I have had the exact same problem after migrating from 2003 to 2008 R2 and found the solution. Change: Set objhttp = Server.CreateObject (“MSXML2.ServerXMLHTTP.6.0”) to: Set objhttp = Server.CreateObject (“MSXML2.XMLHTTP.6.0”) and your problem will go away. I tried to find the pros and cons about both objects, but haven’t yet found a reason to not … Read more