All Questions
4 questions
1
vote
0
answers
3k
views
Applying code signing for 7zip SFX (self extracting exe)
I have code signing applied to the windows exe.
And then we create an SFX (self extracting exe) with that windows exe and a json data file using the following commands.
"C:\Program Files\7-Zip\7z....
0
votes
1
answer
3k
views
How to create silent install using Winrar for Setup program 'Run after installation'
I can create normal silent executable by selecting 'Hide all' option in Silent mode through SFX options.
But when I add file in SFX options -> Setup program ->'Run after extraction' e.g. devnode.exe
...
2
votes
3
answers
5k
views
How to run Multiple exe with “RunProgram” from 7zip sfx with config.txt?
Ive Tried this it only ever runs which ever instance of run program is first.
ive also tried with ExecuteFile.
;!@Install@!UTF-8!
Title="Title"
RunProgram="one.exe"
RunProgram="two.exe"
;!@InstallEnd@...
0
votes
1
answer
5k
views
How to execute a bat file inside exe? (exe created using WinRAR sfx)
I want to create an exe file which includes mysql.msi and java.zip. I have written vbscript to install mysql and extract java file in C: drive. It works fine.
Now my problem is:
Convert the source ...