如何 运行 Qt Installer Framework 中的可执行文件?
How to run an executable file in Qt Installer Framework?
我有一个可执行文件 C:\CDM21226_Setup.exe,我想通过 Qt Installer Framework (QtIFW) 运行。请注意 CDM21226_Setup.exe 是驱动程序,而不是我要安装的应用程序。我想先通过安装程序安装驱动程序。我尝试在组件脚本中执行以下操作但没有成功。
- component.addElevatedOperation("Execute", "C:/CDM21226_Setup.exe");
- installer.execute("C:/CDM21226_Setup.exe");
如果有人知道如何从 Qt Installer Framework 运行 exe 文件,请在此处分享。我真的需要它,但不知道该怎么做。
我在 Windows 10.
上使用 Qt 5.7
运行以管理员身份安装程序然后installer.execute()
生效。
您可以使用installer.performOperation("Execute", ["C:/CDM21226_Setup.exe"]);
我有一个可执行文件 C:\CDM21226_Setup.exe,我想通过 Qt Installer Framework (QtIFW) 运行。请注意 CDM21226_Setup.exe 是驱动程序,而不是我要安装的应用程序。我想先通过安装程序安装驱动程序。我尝试在组件脚本中执行以下操作但没有成功。
- component.addElevatedOperation("Execute", "C:/CDM21226_Setup.exe");
- installer.execute("C:/CDM21226_Setup.exe");
如果有人知道如何从 Qt Installer Framework 运行 exe 文件,请在此处分享。我真的需要它,但不知道该怎么做。 我在 Windows 10.
上使用 Qt 5.7运行以管理员身份安装程序然后installer.execute()
生效。
您可以使用installer.performOperation("Execute", ["C:/CDM21226_Setup.exe"]);