Windows error 0x80072EE6, -2147012890

Detailed Error Information

WININET_E_UNRECOGNIZED_SCHEME[1]

MessageThe URL does not use a recognized protocol
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code12006 (0x2ee6)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00002ee6.

Questions

4votes
0answers

Unable to attach debugger to a process running as different user Visual Studio 2012/2013

I have a Windows Service running as a low privileged domain account. My account is a local administrator. When I try to attach the debugger to the service when the project/solution is open in Visual Studio 2012/2013 I get the error "Unable to attach to process. Operation not supported. Unknown [...] read more
c#
visual-studio
debugging
windows-services
.net-4.5
3votes
3answers

VS2010 debugging just stopped, Unknown error: 0x80072ee6

For some reason, my ability to attach a debugger to ANYTHING has just stopped. It has persisted after a computer reboot, and it's really making things difficult. This is the error I get: --------------------------- Microsoft Visual Studio --------------------------- Unable to attach to the process. Operation not supported. Unknown error: 0x80072ee6. [...] read more
visual-studio-2010
debugging
2votes
1answer

Download VBS error "(null): 0x80072EE6"

I have this VBS for downloading files: Set args = Wscript.Arguments downloadURL = WScript.Arguments.Item(0) saveLocation = WScript.Arguments.Item(1) dim xHttp: Set xHttp = createobject("Microsoft.XMLHTTP") dim bStrm: Set bStrm = createobject("Adodb.Stream") xHttp.Open "GET", downloadURL, False xHttp.Send with bStrm .type = 1 '//binary .open .write xHttp.responseBody .savetofile saveLocation, 2 '//overwrite end with and [...] read more
windows
batch-file
vbscript
2votes
1answer

Error 0x80072ee6 in Windows Live Installer

I got a message saying "A new version of MSN Live Messenger is available", but the installer failed with error "aborted:0x80004004". I googled it a bit and found this suggestion to run the Windows Installer Cleanup Utility. That website looks dubious, but the tool is from Microsoft so I figured [...] read more
windows
instant-messaging
installer
windows-live

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0