Windows error 0x000003FC, 1020

Detailed Error Information

KEY_HAS_CHILDREN[1]

MessageCannot create a symbolic link in a registry key that already has subkeys or values.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800703FC.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1020 (0x03fc)

Questions

1vote
2answers

Read bytes from min and max hex offsets with C#

I want to be able to read bytes from a min and max hexadecimal offset that is given through 2 strings string minO and string maxO. After that I just need to convert the bytes to a string. //Setup byte reader. FileStream fs = new FileStream(EditOpen.FileName, FileMode.Open); BinaryReader br = [...] read more
c#
encoding
hex
0votes
1answer

vb.net overflow of variable as in c#

I need to make some big multiplications for cryptographic reasons in vb.net and overflow the variable as C,C++ and C# does. I have disabled the check of overflow at the vb.net project but when i an doing those multiplications i get as a result 1.#INF ex. in c: z^y= 0xFFFFFFFF [...] read more
vb.net
cryptography
overflow

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