Changing the PATH environment variable

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I configure my component to add a path entry to the %PATH% environment
variable without deleting the paths the builder adds automatically ?

I tried to add a FBA generic command but it didn't change any thing.

Can some one help ?
 
You can modify the registry entry at run time:
[HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment],"Path"

Or, if you prefer, you can use set it via a command line. Just make sure to include the %PATH% in the new value so that it can use
the old value too. I.e.:
set PATH=%PATH%;....

Or you can directly modify the value in TD in "Session Manager (Windows subsystem)" component's registry section.
 
Back
Top