In windows system, the order of the different paths in PATH
variable environnement defines the resolution priority :
Example:
- If the path is constituted of the following :
C:/Dir1;C/Dir2
- And containing
C:/Dir1/test.exe
andC:/Dir2/test.exe
- Running
test.exe
in cmd will resolve intoC:/Dir1/test.exe
That's fine, but in Windows there is two PATH, the user one and the system one. And there are concatenated as following : <system-path>;<user-path>
So, the system path seems to always have priority over the user path.
Am I wrong ?
Regards,