inno-setup – 如何在Inno Setup中静默安装Microsoft VC可再发行组件?

前端之家收集整理的这篇文章主要介绍了inno-setup – 如何在Inno Setup中静默安装Microsoft VC可再发行组件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Inno Setup中静默安装Microsoft VC可再发行组件?我使用了以下代码,除安装进度窗口外,大多数安装部分都是静默的.

这是我的[运行]部分的代码: –

[Run]
Filename: "{app}\bin\vcredist_x86.exe"; \
    Parameters: "/passive /verysilent /norestart /q:a /c:""VCREDI~3.EXE /q:a /c:""""msiexec /i vcredist.msi /qn"""" """; \
    Check: VCRedistNeedsInstall; WorkingDir: {app}\bin;Flags: runminimized nowait; \
    StatusMsg: Installing CRT...

解决方法

您可以将其添加到安装脚本:
[Files]
Source: "vcredist_x86.exe"; DestDir: {tmp}; Flags: deleteafterinstall

[Run]
Filename: {tmp}\vcredist_x86.exe; \
    Parameters: "/q /passive /Q:a /c:""msiexec /q /i vcredist.msi"""; \
    StatusMsg: "Installing VC++ 2008 Redistributables..."

请注意,如果您使用的是与2008不同的可再发行版本,则运行参数会稍有变化.

原文链接:https://www.f2er.com/delphi/102287.html

猜你在找的Delphi相关文章