Windows error 0x80070483, -2147023741

Detailed Error Information

NO_ASSOCIATION[1]

MessageNo application is associated with the specified file for this operation.
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 Code1155 (0x0483)

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

Questions

7votes
1answer

WScript.Shell Run gives "No application is associated with the specified file for this operation." when opening images.

I am facing an issue while trying to open an image file from a Silverlight app in Windows 10 using WScript.Shell. The code is as follows. try { dynamic shell = AutomationFactory.CreateObject("WScript.Shell"); shell.Run(@"C:\temp\X.jpg"); } catch (Exception ex) { MessageBox.Show(ex.StackTrace); } This piece of code works perfectly fine when the default [...] read more
silverlight-5.0
wsh
1vote
3answers

Faxing PDF file using .Net application

I developed a windows service to fax files using VB.NET. It is working for the file formats .bmp,.jpeg. But it is not working for the file type .PDF. I am using FaxComLib (COM .dll) to send fax. I am getting following error when the service tries to fax .PDF file. [...] read more
.net
vb.net
fax
1vote
1answer

Using AssocQueryString to get 64-bit application command from 32-bit application, but not working

I try to use AssocQueryString to get association information, myapp.exe is 32-bit executable file. Here's my code. WCHAR commandline[_MAX_PATH]; DWORD size = _MAX_PATH; HRESULT h = AssocQueryStringW(ASSOCF_OPEN_BYEXENAME, ASSOCSTR_COMMAND, execName, 0, commandline, &size); if (SUCCEEDED(h)) { ... } I find that if "execName" is a 32-bit application, this api works perfect. [...] read more
c++
windows
winapi
visual-c++
32bit-64bit

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