Start application with parameters on Windows start

天涯浪子 提交于 2019-11-30 08:44:26

问题


I am trying to have my application automatically launch and run the log-in logic when Windows starts up.

I've got it working with a shortcut in the startup folder with parameters but I was wondering if there is some way to set a registry key that can start my program and pass it parameters like a shortcut would?

I'm using Inno Setup for the installer and I was using this line:

Name: "{commonstartup}\AppNameHere"; Filename: "{app}\AppNameHere.exe"; \
    Parameters: "/login"`

But I want to be able to instead use a registry entry like so:

Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; \
    ValueType: string; ValueName: "AppNameHere"; ValueData: """{app}\AppNameHere.exe"""; \
    Flags: uninsdeletevalue`

I thought there would be some way to specify parameters for the startup but I cannot find anything on the Inno Setup website other than what I already found out about adding the registry key itself from http://www.jrsoftware.org/iskb.php?startwithwindows

Does anyone have experience with adding registry keys and starting applications with parameters on Windows startup?


回答1:


You can include parameters in ValueData, separated with a space from each other and from the executable path. E.g.:

Root: HKLM; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; \
    ValueType: string; ValueName: "AppNameHere"; \
    ValueData: """{app}\AppNameHere.exe"" /login"


来源:https://stackoverflow.com/questions/15123421/start-application-with-parameters-on-windows-start

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!