Inno Setup - 仅与Internet Explorer打开链接

时间:2014-05-06 14:36:07

标签: inno-setup

我使用这些代码打开一个htm文件,但问题是我只需要使用Internet Explorer打开该文件。

我怎样才能实现这一目标? 谢谢!

procedure CurStepChanged(CurStep: TSetupStep);
var
    ErrCode: integer;
begin
    if (CurStep=ssPostInstall) then
    begin
        ShellExec('open',ExpandConstant('{userdesktop}\Tutoriais\index.htm'), '', '', SW_SHOW, ewNoWait, ErrCode);        
    end;

    end;

1 个答案:

答案 0 :(得分:1)

我使用这行代码的RUN部分来解决这个问题:

[Run]
Filename: iexplore.exe; Parameters: "{userdesktop}\Tutoriais\index.htm"; Verb: open; Flags: shellexec runasoriginaluser

谢谢!