Setup.exe提取 :如果您的MSI嵌入在 setup.exe 中,请首先尝试 setup.exe/a -应该适用于所有或至少大多数Installshield设置.如果这不起作用,请参阅以下答案以了解提取方法: 从提取的设置文件中创建MSI (底部) 什么是使用msiexec/a启动管理安装的目的? 从EXE提取MSI I need InstallShield msi background image to use in wix.I have extracted msi via 7zip but I couldn't find background image. Can anyone help me to find it? 解决方案 Copyright: Not sure about the copyright issues involved, I definitely would use my own images, but if you just want to get the images for the size parameters and then modify the content, then maybe just use dark.exe to decompile the MSI to its constituent parts. See link below for WiX's own, default images on github.com.Dark.exe: With WiX installed (WiX quick start) you can de-compile any (or at least most) MSI files to see what it contains by using the dark.exe binary and specify to extract binaries using the /x switch (this assumes dark.exe is in the path, or else use full path to it):dark.exe "YourSetup.msi" /x BinsThe above command creates a decompiled WXS WiX source file in the main MSI folder and a sub folder called Bin with extracted binaries from within the MSI (if the command completes without error).WiX's Own Bitmaps: You can find WiX's own, default bitmaps here: https://github.com/wixtoolset/wix3/tree/develop/src/ext/UIExtension/wixlib/BitmapsSetup.exe Extraction: If your MSI is embedded in a setup.exe, first try setup.exe /a - that should work for all or at least most Installshield setups.If that does not work, please see these answers for extraction approaches:Create MSI from extracted setup files (towards bottom)What is the purpose of administrative installation initiated using msiexec /a?Extract MSI from EXE 这篇关于如何获取wix的Installshield SplashBitmap图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-25 07:53