Start a program when user logs in

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jvb

    #1

    Start a program when user logs in

    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?

  • diAb0Lo

    #2
    Re: Start a program when user logs in

    On 30 mayo, 11:51, jvb <gome...@gmail. comwrote:
    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_MACH INE\SOFTWARE\Mi crosoft\Windows \CurrentVersion \Run]
    "myAppKey"="C:\ \FOLDER1\\app.e xe"

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

    Comment

    • jvb

      #3
      Re: Start a program when user logs in

      On May 30, 12:13 pm, diAb0Lo <garis.s...@gma il.comwrote:
      On 30 mayo, 11:51, jvb <gome...@gmail. comwrote:
      >
      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_MACH INE\SOFTWARE\Mi crosoft\Windows \CurrentVersion \Run]
      "myAppKey"="C:\ \FOLDER1\\app.e xe"
      >
      You can do it on your App Installer or the first time App runs.
      Thanks, i appreciate it!

      Comment

      Working...