You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently all applications with VxKex broke showing error that they can't find the KxNt.dll. In log there is next error entries:
[30.08.2024 7:15:32 1064:1068 KexDll\dllpath.c:207 (KexpShrinkDllPathLength)] RtlFindCharInUnicodeString returned an error // NTSTATUS error code: STATUS_NOT_FOUND
[30.08.2024 7:15:32 1064:1068 KexDll\dllrewrt.c:125 (KexInitializeDllRewrite)] Failed to append Kex32/64 to the DLL search path. // NTSTATUS error code: STATUS_NOT_FOUND
Cause:
This is due to how app works and adds its own path to application DLL search path. It erases duplicate entries from PATH variable and replaces them with its own path, so the length of PATH is not changed.
Solution:
To avoid this error, you NEED to have duplicate entries in PATH environment variable. You can just pick last path in the PATH environment variable and duplicate it several times. How many times - depends on path in which the VxKex installed. The length of all those duplicates combined must be greater or equal to the length of VxKex own path, so it would fit in place of them.
The text was updated successfully, but these errors were encountered:
Intro:
Recently all applications with VxKex broke showing error that they can't find the KxNt.dll. In log there is next error entries:
Cause:
This is due to how app works and adds its own path to application DLL search path. It erases duplicate entries from PATH variable and replaces them with its own path, so the length of PATH is not changed.
Solution:
To avoid this error, you NEED to have duplicate entries in PATH environment variable. You can just pick last path in the PATH environment variable and duplicate it several times. How many times - depends on path in which the VxKex installed. The length of all those duplicates combined must be greater or equal to the length of VxKex own path, so it would fit in place of them.
The text was updated successfully, but these errors were encountered: