How to make silent installer for you software

1.Download and install the latest version of 7-Zip.
2.Make a folder to copy all of the installation files to. If you are using a .msi include Msistub.exe in the folder. Make sure the installer name is under 8 character and has no spaces.
3.Select all of them and right click on any file.
4.Select "Add to archive...", which is under the select option.
5.You can make the archive name to whatever you want it to be. Set the compression level to Ultra.

6.Hit OK. Once the archive is created, you can delete all files except the archive.
7.Copy 7zs.sfx to the folder containing the archive. This one has no cancel button.
8.If you want, you can change the icon of the installer by replacing the icon in 7zS.sfx using ResHacker. For example, you can use the icon from the main program. Remember to save 7zS.sfx when you're finished.

This image has been resized. Click this bar to view the full image. The original image is sized 681x383.

In order to get rid of the cancel button and the close button, go to Dialog→500→1033. Select all then paste in this code: Code:
500 DIALOG 0, 0, 186, 26STYLE DS_FIXEDSYS | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTIONCAPTION "Progress"LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_USFONT 8, "MS Shell Dlg"{ CONTROL "Progress1", 1000, "msctls_progress32", PBS_SMOOTH | WS_CHILD | WS_VISIBLE | WS_BORDER, 7, 7, 172, 14 }
In order to get rid of everthing paste in this code. Code:
500 DIALOG 0, 0, 0, 0STYLE WS_POPUPCAPTION "Progress"LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_USFONT 8, "MS Shell Dlg"{}
Select compiles and then save
9.Open Notepad and add the following: Code:
;!@Install@!UTF-8!RunProgram="program.exe –switch";!@InstallEnd@!
Replace program.exe with the name of your installer (including the extension). Replace -switch with the desired switch(es) to be used. You can also use a .cmd.

If you are using a .msi package you will need to use
Msistub.exe. Msistub.exe will have to be inside the archive. The code for config.txt will be:
Code:
;!@Install@!UTF-8!RunProgram="msistub program.msi /qb-!";!@InstallEnd@!
Where program.msi is the name of the msi. You can use /qb-! for an install with a progress screen and /qn for a install with no screen.
10.Save as config.txt with UTF-8 encoding by selecting "UTF-8" from the dropdown menu in the "Save As..." dialog in Notepad. Save it to the same folder as 7zS.sfx and the 7z archive.

11.The folder should now look something like this:

12.Open a command prompt. CD to the folder. Then enter the following command: Code:
copy /b 7zs.sfx + config.txt + (whatever the archive name).7z (Installer_Name).exe
This image has been resized. Click this bar to view the full image. The original image is sized 790x54.

That's it, you're done. Try it out.

7zs.sfx


Enjoy !

source-http://www.msfn.org/board/lofiversion/index.php/t39048.htm
0 Comments
Disqus
Fb Comments
Comments :

0 comments:

Post a Comment