This is the first time I've gotten a piece of software ready for distribution. I'm currently working on a setup project to create the installer and I need to write a custom action to add an entry to he PATH Environment Variable.
My question is: Is a Custom Action a separate project from the Setup Project or can it be added and written within the setup project? Also, what libraries would I be using to write this?
Thank you in advance for any of your time! I can't figure this out for the life of me.
--UPDATE--
I clicked on View > Registry and added "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" with a string-value called path. I entered [TARGETDIR] as the value and build the installer. After installation, Environment variables are still not added to my system.
-Kepler