Windows error 0xC0AAB101, -1062555391
Detailed Error Information
IMAPI_E_INVALID_PARAM[1]
Message | The value specified for parameter '%1!ls!' is not valid. |
---|
Declared in | imapi2fserror.h |
---|
HRESULT analysis[2]
Flags | Severity | Failure |
---|
Reserved (R) | true |
---|
Origin | Microsoft |
---|
NTSTATUS | false |
---|
Reserved (X) | false |
---|
Facility | Code | 170 (0x0aa) |
---|
Error Code | 45313 (0xb101) |
---|
Questions
I'm trying to create a disc image via IMAPI2. The code is pretty straightforward: #include <windows.h> #include <iostream> #include <fstream> #include <shlwapi.h> #include <cstdio> #include <imapi.h> #include <imapi2.h> #include <imapi2fs.h> #include <imapierror.h> #include <imapi2error.h> #include <imapi2fserror.h> using namespace std; int main() { CoInitialize(NULL); HRESULT res = 0; IFileSystemImage* image = [...]
read moreComments
Leave a comment
Sources
- imapi2fserror.h from Windows SDK 10.0.14393.0
- https://msdn.microsoft.com/en-us/library/cc231198.aspx
User contributions licensed under CC BY-SA 3.0