Windows error 0x80040265, -2147220891

Detailed Error Information

HRESULT analysis[1]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode4 (0x004)
NameFACILITY_ITF[1][2]
DescriptionThe source of the error code is COM/OLE Interface management.[1][2]
Error Code613 (0x0265)

Questions

1vote
1answer

Microsoft Dynamics 365 Field Service Web API: Create a work order triggers a "code": "0x80040265", "message": "The Service Account is required.",

HTTP POST TO CREATE A NEW WORK ORDER IN MICROSOFT DYNAMICS 365 - FIELD SERVICE (EMPTY BODY) import requests url = "https://{{my-env_name}}.{{my_region}}.dynamics.com/api/data/v9.0/msdyn_workorders" payload = "{\n \n}" headers = { 'Accept': 'application/json', 'OData-MaxVersion': '4.0', 'OData-Version': '4.0', 'If-None-Match': 'null', 'Authorization': 'Bearer eyXXX', 'Content-Type': 'application/json', } response = requests.request("POST", url, headers=headers, data = [...] read more
python-3.x
dynamics-crm
microsoft-dynamics
dynamics-365
dynamics-crm-webapi
1vote
1answer

CRM data import error 0x80040265

I try to upload new Account with the data import wizard via a csv file, the only column is the Account Name. I always received the error code 0x80040265 with no log on the server. I do the same thing for Contact with more columns and it works without errors. [...] read more
dynamics-crm
0votes
3answers

Getting MP4 File Duration with DirectShow

I need to get the duration of an mp4 file, preferably as a double in seconds. I was using DirectShow (see code below), but it keeps throwing a particularly unhelpful error. I'm wondering if someone has an easy solution to this. (Seriously, who knew that getting that information would be [...] read more
c#
directshow
mp4
duration
directshow.net
0votes
1answer

How to play ogg Vorbis files using IGraphBuilder

I need to write a program that can play .ogg Vorbis file with the help of IGraphBuilder or any other windows API directly (in C++/win32 API)? I tried with IGraphBuilder but that is not working for me. Sample code: IMediaControl *pControl = NULL; IGraphBuilder *pGraph= NULL; IMediaEventEx *pEvent= NULL; IMediaPosition [...] read more
c++
winapi
windows-7
oggvorbis

Comments

Leave a comment

(plain text only)

Sources

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

User contributions licensed under CC BY-SA 3.0