I have a feeling I should be able add a directory to the PATH environment variable on an application-lifetime basis, but I can't find out how to do this. Is it possible to add a parameter to a Windows shortcut that appends a directory to the current value of PATH for use by the application being linked?
Let the shortcut execute a batch file (.cmd), that
Should look like this:
@echo off
set path=%path%;C:\My Folder
start "Window Title" "Path to my exe"