Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
177 views
in Technique[技术] by (71.8m points)

c# - convert msi to exe with a command line option...

i want to convert a msi file in to an exe file. When i run msi file with qn option with msiexec then my software install silently. But now i want to convert that msi file into .exe file , and that exe file runs msi file with msiexec /i "path of msi file" /qn option, any idea how to do it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

We can use 7zip SFX to create switch-less installers. here is a quick walk through

Requirements

  • 7Zip: you can download latest version of 7zip from Official Site.

  • 7Zip SFX Module: Official download page is here.

  • Resource Hacker or any other resource editor (Optional): if you want to use a custom icon for you final executable you should use a resource editor app and replace the icon with your desired one. here is Resource Hacker app download link from it's developer website.

Step1:

Create a exec.bat file in the same folder of your msi file and copy your msiexec /i "path of msi file" /qn in it. I used Installer.msi for my sample so here is my file:

@Echo off
msiexec /i installer.msi /qn

Step2:

Compress msi and bat files to a 7z archive.(you can download and install 7zip from here) in the sample I compressed my Installer.msi and exec.bat to a installer.7z archive.

enter image description here

Step3:

Download and extract 7zSD (from 7zSfx link) and put the file in the same folder of archive, here is direct link to it.

Step4 (Optional):

We can change icon of the installer, to do this we should replace icon of 7zsd.sfx file, in Resource hacker we should open 7zsd.sfx and get to IconGroup > 101 > 1049 and replace the icon with a desired one. then save the new sfx file in the same folder of generated 7z Archive. I saved mine as 7zsdInstaller.sfx.

enter image description here

Step5:

We should create a config file to tell the Sfx file what to do after extracting the archive, here is the config file for the sample:

;!@Install@!UTF-8!
GUIFlags="8+32"
ExtractDialogText="My Sample Installer"
RunProgram="exec.bat"
;!@InstallEnd@!

We should save it in the same folder of our 7z Archive, I named mine config.txt.

Step6:

Now we should combine our file to a single executable, to do this, first we should navigate our Command prompt to a folder we hold our generated files and then we should execute following command:

copy /b 7zsdInstaller.sfx + config.txt + Installer.7z "installer.exe"

Now we should have a installer.exe in the same folder

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...