Hi I try to fix the PATH environment variable in a console shell. I've found that i can fix the path for dll and exe with registry key [HKEY_LOCAL_MACHINE\Loader] and value "SystemPath". But it works only for LoadLibrary() and CreateProcess().
Can i create/change another registry key to fix the PATH variable for console shell?
Windows CE has no notion of a "path". You must provide fully qualified paths to files. LoadLibrary is somewhat of an anomaly as it searches several paths, all of which are referenced in Help.
The PATH command is valid within a single command shell window, but this is solely a compatibility feauture added by the command application, not something supported by the OS. If you set the path in one command window, it is not usable outside that window and does not persist once you close the current command shell.