Inno Setup:卸载后请求重启

时间:2016-04-08 10:40:50

标签: inno-setup uninstaller

我想让用户在卸载应用程序后重新启动系统。

使用AlwaysRestart=yes只会在安装后询问用户,但之后不会出现提示。

我正在使用Inno Setup来解决这个问题。

谢谢。

1 个答案:

答案 0 :(得分:1)

使用UninstallNeedRestart event function

function UninstallNeedRestart(): Boolean;
begin
  Result := True;
end;

它使卸载程序在最后请求重新启动。

enter image description here

请注意,您无法将其与AlwaysRestart directive结合使用。