如何在MSI(WIndows Installer)安装中显示启动画面?

时间:2022-05-15 02:50:57

I have developed installation of my application using InstallShield. When installation is built as a single self extracting executable, then everything works fine and splash screen is displayed while setup.exe is launched. However, when I changed the installation to be of type Downloader (which means two files setup.exe and setup.msi will be created separately) and I launch the MSI the splash screen is not displayed. How this can be implemented, Please suggest?

我已经使用InstallShield开发了我的应用程序的安装。当安装构建为单个自解压可执行文件时,一切正常,启动setup.exe时会显示启动画面。但是,当我将安装更改为Downloader类型(这意味着将分别创建两个文件setup.exe和setup.msi)并且启动MSI时,不会显示启动画面。如何实现,请建议?

1 个解决方案

#1


1  

MSI doesn't have the ability to display a splash screen. As the file is getting processed by msiexec it will just show the default "Preparing to install..." message 如何在MSI(WIndows Installer)安装中显示启动画面?

MSI无法显示启动画面。当文件由msiexec处理时,它将显示默认的“准备安装...”消息

If you want to display a splash screen it will need to be done by a separate bootstrapper.

如果要显示启动画面,则需要由单独的引导程序完成。

#1


1  

MSI doesn't have the ability to display a splash screen. As the file is getting processed by msiexec it will just show the default "Preparing to install..." message 如何在MSI(WIndows Installer)安装中显示启动画面?

MSI无法显示启动画面。当文件由msiexec处理时,它将显示默认的“准备安装...”消息

If you want to display a splash screen it will need to be done by a separate bootstrapper.

如果要显示启动画面,则需要由单独的引导程序完成。