Start a program when user logs in

J

jvb

Hey all,

I have a quick question, I want to have my application startup when
the user logs into their machine and I am not sure how to do it. Is it
a registry setting?
 
D

diAb0Lo

Hey all,

I have a quick question, I want to have my application startup when
the user logs into their machine and I am not sure how to do it. Is it
a registry setting?

hi,

You can resolve it using Registry.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"myAppKey"="C:\\FOLDER1\\app.exe"

You can do it on your App Installer or the first time App runs.
 
J

jvb

I have a quick question, I want to have my application startup when
the user logs into their machine and I am not sure how to do it. Is it
a registry setting?

hi,

You can resolve it using Registry.

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"myAppKey"="C:\\FOLDER1\\app.exe"

You can do it on your App Installer or the first time App runs.

Thanks, i appreciate it!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top