Want to make a silent installer...

Status
Not open for further replies.

Netguy

Banned
Banned
806
2010
5
0
Hi , Could anyone of you tell me how to convert a PACKED MSI for silent install or can anyone do it for me.

Name of the software : Gadget Extractor ( Google)


Regards,
Netguy
 
4 comments
Write a .bat file with the following code:

Code:
:begin
setup.msi /qb
exit
:end

save it as run.bat

Put this into a rar SFX while running run.bat after extraction.

- setup.msi
- run.bat
 
@l0calh0st - Thank You , Could you please give me your MSN/Yahoo ! I need some small help with a INF file (Installation file) . :) Thanks again
 
Use AutoIT :)
It's simple to create scipt for silent install

ex:
Code:
#cs ----------------------------------------------------------------------------
Autor: 
Script created with AutoIT3 http://www.autoitscript.com/autoit3/ 
Version: 1.00
Desc: ...
#ce ----------------------------------------------------------------------------

; Start
Opt ("SendKeyDelay", 500)
Run ("aimp_2.10.exe /S")
WinWaitActive ("Installer Language")
Send ("{ENTER}") 
WinWaitActive ("AIMP2 Setup") 
Send ("!n") ; Sledeci korak
WinWaitActive ("AIMP2 Setup")
Send ("{ENTER}")
WinWaitActive ("AIMP2 Setup") 
Send ("{Down}")
Send ("{Down}")
Send ("{Down}")
Send ("{Down}")
Send ("{Down}")
Send ("{Down}")
Send ("{Down}")
Send ("{SPACE}")
Send ("{Down}")
Send ("{SPACE}")
Send ("{TAB}")
Send ("{TAB}")
Send ("{ENTER}")
WinWaitActive ("AIMP2 Setup")
Send ("{TAB}")
Send ("!i")
WinWaitActive ("AIMP2 Setup", "Installation of AIMP2 is done!")
Send ("{SPACE}") 
Send ("{Down}")
Send ("{SPACE}")
Send ("{TAB}")
Send ("{ENTER}") ; end
; Kraj skripte
 
Status
Not open for further replies.
Back
Top