Inno Setup,APP启动Windows启动时

健榮 *_*榮 陳 9 inno-setup

对于Inno Setup,我想在Windows启动时为MyAPP Auto Start创建一个复选框Task.我的代码如下:

并且,如何编写下面的代码 - DO_Set_AutoStart_WhenWindowsStart()^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

[Tasks]
Name: "StartMenuEntry" ; Description: "Start my app when Windows starts" ; GroupDescription: "Windows Startup"; MinVersion: 4,4;

[code]

//Do Additional Task - Auto Start when Windows Start 

function NextButtonClick(CurPageID: Integer): Boolean;
var
  Index: Integer;
begin
  Result := True;
  if CurPageID = wpSelectTasks then
  begin
    Index := WizardForm.TasksList.Items.IndexOf('Start my app when Windows starts');
    if Index <> -1 then
    begin
      if WizardForm.TasksList.Checked[Index] then
        MsgBox('First task has been checked.', mbInformation, MB_OK)
        DO_Set_AutoStart_WhenWindowsStart();
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      else
        MsgBox('First task has NOT been checked.', mbInformation, MB_OK);
    end;
  end;
end;
Run Code Online (Sandbox Code Playgroud)

jac*_*ate 13

您无需使用[code]部分添加自动启动应用程序.

例如,有不同的方法可以实现这一目标

[icons]
Name: "{userstartup}\My Program"; Filename: "{app}\MyProg.exe"; Tasks:StartMenuEntry;
Name: "{commonstartup}\My Program"; Filename: "{app}\MyProg.exe"; Tasks:StartMenuEntry;
Run Code Online (Sandbox Code Playgroud)

{userstartup}和{commonstartup}之间的区别(如果不是很明显)是{userstartup}影响当前用户的启动菜单条目,{commonstartup}影响目标机器的所有用户.


编辑

您还可以使用注册表来启动应用程序.我添加这个是因为在评论中提到的OP所描述的方法在Windows 8上不起作用(因为缺少开始菜单,我忘了).我手边没有Windows 8进行测试,所以由你来测试这是否适用于Windows 8.

自WinXP以来,注册表中Run键存在,因此您可以配置窗口以从安装程序自动运行程序,添加如下内容:

[Registry]
;current user only
Root: HKCU; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "MyProgram"; ValueData: "{app}\MyProg.exe"; Tasks:AutoRunRegistry;

;any user
Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "MyProgram"; ValueData: "{app}\MyProg.exe"; Tasks:AutoRunRegistry;
Run Code Online (Sandbox Code Playgroud)

不要错过我也在更改Tasks示例中的参数AutoRunRegistry.

  • 只是更新,我收到错误`指令或参数“任务”表达式错误:参数“任务”包含未知任务`,所以我尝试删除语法,只需使用`名称:“{commonstartup}\My Program”; 文件名:“{app}\MyProg.exe”`,适用于我在 Inno 版本 6.0.5 的 Win10 上。 (2认同)