Start a program when user logs in

  • Thread starter Thread starter jvb
  • Start date Start date
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?
 
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.
 
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!
 
Back
Top