Hi,

I have the following situation: the main executable is in a folder and some dlls - linked to the exe - are in other folder. They are needed to start the exe. Somthing like:
InstallFolder\Bin
InstallFolder\Lib
InstallFolder\Shared
The application is in "Bin", DLLs in "Lib". If I extend the system path (PATH) with "..\InstallFolder\Lib" all works perfect. The problem is: the philosophy of my company is to NOT write anything in the customer system path, registry, etc.
So: is it possible to make known the folder ..\InstallFolder\Lib to the application in "InstallFolder\Bin". E.g. you can do this if you starts an application from another (SetEnvironment) and the system path is clean. But in this case that's the application (or if needed the link) the user starts. That means the application must look not only in the current directory and in the PATH, but also in my InstallFolder\Lib.
For any idea thanks in advance.

Regards,
Emil