我有當它與ShellExec
做到了啓動一個應用程序的InnoSetup項目。問題是我的安裝程序在啓動時升級,但我希望啓動的應用程序不會升級。這可能有某種方式嗎?Inno Setup的ShellExec特權
procedure LaunchApplication(shortcut: String);
var
ErrorCode: Integer;
begin
ShellExec('', ExpandConstant('{userprograms}\' + shortcut),'', '', SW_SHOW, ewNoWait, ErrorCode);
end;
你的意思是你的安裝程序以*高*(管理員)模式運行 - 對吧?或者你的意思是*我的安裝程序升級*? –