PDA

View Full Version : Need put me aplication in the registry run folder


TomasART
03-27-2007, 03:59 AM
How i can put my aplication in the registry run folder?

Steve_K
03-27-2007, 10:23 AM
See registry actions in the helpfile. All you need for that is in there.

TomasART
04-03-2007, 04:53 AM
I know hoy i can write a key in the registry, but i dont know the instalation path that the user have choosen.

any example please how i can put the aplication during the instalation in the run folder of the registry?

Adam
04-03-2007, 11:26 AM
You will want to do a Registry.SetValue() (http://www.indigorose.com/webhelp/suf70/Program_Reference/Actions/Registry.SetValue.htm) action somewhere after the files are installed. To get the location of your application usually you can use SessionVar.Expand("%AppFolder%\\yourfile.exe"). So you can use this inside the Registry.SetValue() to accomplish your goals.

Adam Kapilik