| View previous topic :: View next topic |
| Author |
Message |
arco
Joined: 04 Aug 2006 Posts: 137 Location: Netherlands
|
Posted: Tue Aug 14, 2007 4:02 pm Post subject: [New Updated Tutorial] Making A 7-Zip Switchless Installer |
|
|
Time for a new Tutorial. At first there are new versions of all the stuff which is needed. Secondly there are a bunch of improvements and is there an easier way to make a 7-Zip Installer. Third: I think most people don't know this all.
Tutorial:
1. Download the best 7zSD aka 7z SFX Module (dynamic link to latest version). Extract and place the 7zsd.sfx in a new folder.
2. Go to this page and download the 7za***.zip (where *** is the version number). This is the 7-Zip command line version. Extract and place the 7za.exe file in the same folder as the 7zsd.sfx file.
3. Download UPX here (get the latest Win32/i386 version). Extract and place the upx.exe in the same folder as where 7zSD and 7za are placed.
4. Make a subdirectory with the name Bin and copy all the files you need for the installer to that folder.
5. If you want, you can change the icon of the installer by replacing the icon of 7zsd.sfx using ResHacker as described here.
6. You can also change the version info of the executable using ResHacker. Go to the folder Version Info in ResHacker by opening 7zsd.sfx and edit the values of "CompanyName" and "FileDescription".
7. Create a Config.txt in the same folder as 7zSD, 7za and UPX.
Open the config.txt and set:
| Quote: | | RunProgram="program.exe -switch" |
Replace program.exe with the filename of the executable of your installer (including the extension). Replace -switch with the desired switch(es). Many switches of different programs can be found here.
For a full silent 7-Zip install you add:
StartX.exe, msistub.exe or other supplementary tools are not needed anymore. Also the switch "waiting" is enabled by default for 'RunProgram=', unless 'nowait:' parameter is used. Also reg-files aren't needed any more. They can be configured in the Config.txt.
For a Register Entry (If you use a lot of Register Entries it's smart to use the parameter SetEnvironment to save time):
| Quote: | | RunProgram="hidcon:cmd Register Entry" |
Keep this in mind: you MUST use DOUBLE backslashes (\\) wherever you normally use backslashes (\) (e.g. in paths or dialog texts). Similarly, if the Value contains double quotes ("), you MUST precede them with a backslash (\").
Now, your Config.txt looks like this:
| Quote: | ;!@Install@!UTF-8!
GUIMode="2"
RunProgram="program.exe -switch"
RunProgram="hidcon:cmd Register Entry"
;!@InstallEnd@! |
You can add, edit and remove lines if you want.
* All available configuration parameters and other helpful information can be found here (site is just translated from Russian to English).
8. Save Config.txt with UTF-8 encoding by selecting "UTF-8" from the dropdown menu in the "Save As..." dialog in Notepad.
9. Make a Create.cmd in the same folder as the Config.txt and past the following:
| Quote: | upx --ultra-brute 7zsd.sfx
cd Bin
..\7za a "..\Program.7z" -r *.* -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on
cd ..
copy /b 7zsd.sfx + Config.txt + Program.7z Program_Name.exe
del Program.7z
|
10. Rename Program_Name to your own program name and run your Create.cmd.
11. Congratulations: you have guaranteed the littlest 7-Zip Installer as possible.
Tool:
Utility that can extract 7z archive and config file (Config.txt) as well as SFX module (7zsd.sfx) from 7z SFX archive. It has the name 7z SFX Archive Splitter (from the 7z SFX creator) and you can download it here (always linked to latest version).
EnJoy. 
Last edited by arco on Mon Jun 21, 2010 3:27 am |
|
| Back to top |
|
 |
ricktendo64

Joined: 21 May 2006 Posts: 3026 Location: Honduras
|
Posted: Tue Aug 14, 2007 4:36 pm Post subject: |
|
|
I was quite reluctant to change but I think now that I read this it might be easier. _________________
Will also accept any old PC hardware donations |
|
| Back to top |
|
 |
muiz Moderator

Joined: 24 Sep 2005 Posts: 1251 Location: The Netherlands
|
Posted: Wed Aug 15, 2007 10:00 am Post subject: |
|
|
| Code: | 2. Go to here and download the 7za.zip from the latest 7-Zip version. Extract and place the 7za.exe in the same folder as 7zSD. |
File doesnt exist.
Found it , bit its very old :S |
|
| Back to top |
|
 |
arco
Joined: 04 Aug 2006 Posts: 137 Location: Netherlands
|
Posted: Wed Aug 15, 2007 10:09 am Post subject: |
|
|
| muiz wrote: | | Code: | 2. Go to here and download the 7za.zip from the latest 7-Zip version. Extract and place the 7za.exe in the same folder as 7zSD. |
File doesn't exist. |
I mean with the latest 7za.zip the currently version 4.5.2 which has the name 7za452.zip
I will make it more easier.
Edit: what do you mean with "bit its very old"?
This is sure the latest (beta) version.
Last edited by arco on Mon Sep 03, 2007 2:56 pm |
|
| Back to top |
|
 |
muiz Moderator

Joined: 24 Sep 2005 Posts: 1251 Location: The Netherlands
|
Posted: Wed Aug 15, 2007 10:13 am Post subject: |
|
|
Ok thx, and the config.txt no more need to save it as UTF-8 ?
Iets gaat er niet goed met het cmd
| Code: |
Bin: WARNING: Het systeem kan het opgegeven bestand niet vinden.
Creating archive ageia.7z
WARNINGS for files:
Bin : Het systeem kan het opgegeven bestand niet vinden.
----------------
WARNING: Cannot find 1 file
7zsd.sfx
config.txt
ageia.7z
1 bestand(en) gekopieerd.
Druk op een toets om door te gaan. . . |
Dit is mn cmd :
| Code: | @echo off
upx --best --crp-ms=999999 --nrv2b 7zsd.sfx
7za a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on ageia.7z Bin
copy /b 7zsd.sfx + Config.txt + ageia.7z ageia.exe
del ageia.7z
pause
|
En de files :
| Code: | 7za.exe
7zsd.sfx
ageia.7z
config.txt
setup.cmd
upx.exe |
Last edited by muiz on Wed Aug 15, 2007 10:35 am |
|
| Back to top |
|
 |
arco
Joined: 04 Aug 2006 Posts: 137 Location: Netherlands
|
Posted: Wed Aug 15, 2007 10:29 am Post subject: |
|
|
Yes that must be... I have add it. Also re-upped a new code for the Config.txt.
@ Muize I'm not sure of this will fix your problems? |
|
| Back to top |
|
 |
yumeyao Moderator

Joined: 27 Aug 2006 Posts: 1718 Location: Taiyuan, Shanxi, PR China
|
Posted: Wed Aug 15, 2007 12:12 pm Post subject: |
|
|
appericate to your great work! This can help me alot. _________________
My work list(Hosted by dumpydooby) |
|
| Back to top |
|
 |
muiz Moderator

Joined: 24 Sep 2005 Posts: 1251 Location: The Netherlands
|
Posted: Fri Aug 17, 2007 12:07 pm Post subject: |
|
|
| Still says missing 1 file,but the installer i made worked. |
|
| Back to top |
|
 |
arco
Joined: 04 Aug 2006 Posts: 137 Location: Netherlands
|
Posted: Thu Aug 23, 2007 6:58 pm Post subject: |
|
|
| Quote: | | appericate to your great work! |
Thanks!
I've tested and found a better compression
Compressing and decompressing is not take (a much) more time. Only UPX is take 72 fast tests to get the best compression. If you don't have a computer with 1Ghz or so you can use: upx --lzma --best (this one is always faster and better then the old one). Sometimes gives this 7z SFX parameter compressing results: -m0=BCJ2 -m1=LZMA:d24:fb120:a2:lc7:mf=bt4 -m2=LZMA:d19:fb102:a2:lc0:lp2:mf=bt3 -m3=LZMA:d19:fb64:a2:lc0:lp2:mf=bt3 -mb0:1 -mb0s1:2 -mb0s2:3. |
|
| Back to top |
|
 |
Fred-Erik
Joined: 10 Oct 2007 Posts: 1
|
Posted: Sat Oct 13, 2007 9:25 am Post subject: |
|
|
Mooie handleiding, Arco!
Je zou hier een interface voor kunnen maken, ik denk dat veel mensen (incl. ik) dat best handig zouden vinden. (b.v. met AutoIt ofzo) |
|
| Back to top |
|
 |
muiz Moderator

Joined: 24 Sep 2005 Posts: 1251 Location: The Netherlands
|
Posted: Sat Nov 10, 2007 7:36 am Post subject: |
|
|
| I saw you changed some things , but that doesnt work at all. |
|
| Back to top |
|
 |
ricktendo64

Joined: 21 May 2006 Posts: 3026 Location: Honduras
|
Posted: Sat Nov 10, 2007 11:24 am Post subject: |
|
|
muiz I find in some cases this command does not grab all the files (especially with admin installed MSI installers)
| Code: | ..\7za a "..\Program.7z" -r *.* -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on |
So what I do is I manually zip with my regular 7zip them and build the installer that way _________________
Will also accept any old PC hardware donations |
|
| Back to top |
|
 |
gora

Joined: 07 Nov 2007 Posts: 136 Location: Ivanovo, Russia
|
Posted: Wed Nov 14, 2007 7:39 am Post subject: |
|
|
Excuse for my bad English, my native language Russian.
If you use Total Commander (TC) all that is written in the first post of this thread it is possible to make this Button in TC. Russian and the English interface has. Manual only in Russian. (Excuse)
Last edited by gora on Fri Nov 05, 2010 6:51 am |
|
| Back to top |
|
 |
muiz Moderator

Joined: 24 Sep 2005 Posts: 1251 Location: The Netherlands
|
Posted: Thu Nov 15, 2007 6:31 am Post subject: |
|
|
| ricktendo64 wrote: | muiz I find in some cases this command does not grab all the files (especially with admin installed MSI installers)
| Code: | ..\7za a "..\Program.7z" -r *.* -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on |
So what I do is I manually zip with my regular 7zip them and build the installer that way |
Also didnt work for me. i already tried.
Im back to the old way, works fine. |
|
| Back to top |
|
 |
Martin H
Joined: 17 Nov 2006 Posts: 26 Location: Denmark
|
Posted: Thu Nov 15, 2007 8:52 pm Post subject: |
|
|
With that command-line, then any files without an extension will not be added, so instead of :
*.*
use :
*
Yes, i know this sounds weird, but still that's the way 7z works internally however...
Additionally, then :
-r
-t7z
-ms=on
Is either default or redundant...
Btw, personally then i wouldn't use these extra switches :
-m0=lzma
-mfb=64
-md=32m
When using :
-mx=9
Which allready is supposed to be tuned for 'Ultra compression' by the 7z author... Granted, i haven't made any tests of this and i haven't bothered to look up what exactly they do either, but of course i can see that they are compression tuning related...
I would just use :
..\7za a -mx=9 "..\Program.7z" *
If i used this system, but i have my own batchfile, where i drop a folder onto and then a switchless installer is made of the contents of the dropped folder and the switchless installer is given the same name as the dropped folder and is setup to run setup.cmd from the dropped folder completely silent, since i mostly use a batchfile for the installation, since i always setup predefined settings for the apps and which then normally uses to many commands to be used neatly from config.txt...
Anyway, nice to see that people are finally switching over to this much more advanced 7z sfx module  |
|
| Back to top |
|
 |
benjamminzIS
Joined: 12 Jan 2007 Posts: 227
|
Posted: Fri Apr 11, 2008 9:49 pm Post subject: |
|
|
I have a question, using this method, how would one go about repackaging a windows update? what should the config file look like. What switch is needed to run the update.exe that sits in the "kbxxxxxx\update" folder after you have extracted the update? Or is that not the file that needs to be run from the config.txt??? Some help please! Thanks in advance... _________________ _coming soon, don't hold your breath |
|
| Back to top |
|
 |
5eraph Moderator

Joined: 05 Jul 2005 Posts: 3707 Location: Riverview, MI USA
|
Posted: Fri Apr 11, 2008 10:21 pm Post subject: |
|
|
| There should be no reason to repackage a Windows update like that. Just put your file (KB??????.exe) in the SVCPACK folder and use the switches /Q /N /Z in SVCPACK.INF. |
|
| Back to top |
|
 |
benjamminzIS
Joined: 12 Jan 2007 Posts: 227
|
Posted: Fri Apr 11, 2008 11:04 pm Post subject: |
|
|
nevermind... _________________ _coming soon, don't hold your breath
Last edited by benjamminzIS on Fri Apr 11, 2008 11:29 pm |
|
| Back to top |
|
 |
5eraph Moderator

Joined: 05 Jul 2005 Posts: 3707 Location: Riverview, MI USA
|
Posted: Fri Apr 11, 2008 11:25 pm Post subject: |
|
|
| Fair enough. You should have been more specific. |
|
| Back to top |
|
 |
5eraph Moderator

Joined: 05 Jul 2005 Posts: 3707 Location: Riverview, MI USA
|
Posted: Sat Apr 12, 2008 12:32 am Post subject: |
|
|
Well, if you're gonna ask the same question in two places, benjamminzIS, then please try to prevent others from falling into the same hole I did by being more specific here or at least pointing to the original question. But if you've found the answer you're looking for then perhaps you should withdraw the question you posted in this thread.
I'm not trying to judge you. In fact, I'm shocked that you think I was to begin with since it was I who first welcomed you to this forum by responding to your very first post here. For what it's worth, I'm sorry you feel the way you do. |
|
| Back to top |
|
 |
benjamminzIS
Joined: 12 Jan 2007 Posts: 227
|
Posted: Sat Apr 12, 2008 2:29 pm Post subject: |
|
|
yeah, pleas accept my apologies... not sure why I was on such a short fuse last night... I guess I'm just tired of all the prep work I've been doing to get my friends MCE box back up and running for him... too many hrs in front of the monitor, lack of sugar... who the hell knows... but I didn't act right and apologize... _________________ _coming soon, don't hold your breath |
|
| Back to top |
|
 |
5eraph Moderator

Joined: 05 Jul 2005 Posts: 3707 Location: Riverview, MI USA
|
Posted: Sat Nov 28, 2009 4:52 am Post subject: |
|
|
| Stickied: This thread links to a far superior SFX module. |
|
| Back to top |
|
 |
beats

Joined: 27 Nov 2007 Posts: 772 Location: Netherlands
|
Posted: Sat Nov 28, 2009 5:44 am Post subject: |
|
|
Oh, nice. This tutorial is quite similar to the script that I use myself to build switchless installers.
BTW, if you want to assign a custom icon to the SFX, remove the first line:
| Quote: | | "upx --ultra-brute 7zsd.sfx" |
Because you cannot reshack an UPX'd exe file (and it doesn't make the resulting exe that much smaller anyway). _________________ Request your Switchless Installer or Addon | How to create an Avast SFX |
|
| Back to top |
|
 |
arco
Joined: 04 Aug 2006 Posts: 137 Location: Netherlands
|
Posted: Sat Jan 16, 2010 7:09 am Post subject: |
|
|
| beats wrote: | Oh, nice. This tutorial is quite similar to the script that I use myself to build switchless installers.
BTW, if you want to assign a custom icon to the SFX, remove the first line:
| Quote: | | "upx --ultra-brute 7zsd.sfx" |
Because you cannot reshack an UPX'd exe file (and it doesn't make the resulting exe that much smaller anyway). |
Yes for that reason you have to first assign a custom icon and then compress the file. Then it works. BTW I will update my tut when i'm at home. Some of the links doesn't works anymore. |
|
| Back to top |
|
 |
boydaigai
Joined: 15 Jan 2010 Posts: 7
|
Posted: Sat Feb 27, 2010 1:31 am Post subject: |
|
|
Noob question :
How to add " reg file " to 7-Zip Switchless Installer? |
|
| Back to top |
|
 |
5eraph Moderator

Joined: 05 Jul 2005 Posts: 3707 Location: Riverview, MI USA
|
Posted: Sat Feb 27, 2010 11:25 am Post subject: |
|
|
| To a new SI, or an existing one? If existing, which one? |
|
| Back to top |
|
 |
boydaigai
Joined: 15 Jan 2010 Posts: 7
|
Posted: Sun Feb 28, 2010 12:55 am Post subject: |
|
|
| 5eraph wrote: | | To a new SI, or an existing one? If existing, which one? |
I Have "Vistart.exe " and "vistart" .reg, I Want to make SI, Can U help me? |
|
| Back to top |
|
 |
5eraph Moderator

Joined: 05 Jul 2005 Posts: 3707 Location: Riverview, MI USA
|
Posted: Sun Feb 28, 2010 2:06 am Post subject: |
|
|
| I don't know where you found your EXE file, or the switch to make the installer silent if your file is not already a silent installer. |
|
| Back to top |
|
 |
boydaigai
Joined: 15 Jan 2010 Posts: 7
|
Posted: Sun Feb 28, 2010 3:51 am Post subject: |
|
|
| Edit, because my problem resolved |
|
| Back to top |
|
 |
alban

Joined: 08 Feb 2009 Posts: 185 Location: aL
|
Posted: Sun Aug 29, 2010 7:39 pm Post subject: |
|
|
I'm trying to make switchless install of Total Commander and here is the line
| Code: | ;!@Install@!UTF-8!
GUIMode="2"
RunProgram="tcmd755a.exe /SILENT /VERYSILENT /SUPPRESSMSGBOXES /SP-"
;!@InstallEnd@! |
I also have a wincmd.key, how do I copy that key to the specific folder e.g c:\program files\totalcmd and also I want to add the ini file wincmd.ini in to the same folder, any one knows how does it work?
Thanks. |
|
| Back to top |
|
 |
gora

Joined: 07 Nov 2007 Posts: 136 Location: Ivanovo, Russia
|
Posted: Sun Aug 29, 2010 11:41 pm Post subject: |
|
|
| Code: | ;!@Install@!UTF-8!
GUIMode="2"
RunProgram="tcmd755a.exe /SILENT /VERYSILENT /SUPPRESSMSGBOXES /SP-"
RunProgram="hidcon:cmd /c copy /y wincmd.key \"%programfiles%\\totalcmd\""
RunProgram="hidcon:cmd /c copy /y wincmd.ini \"%programfiles%\\totalcmd\""
RunProgram="hidcon:cmd /c copy /y wcx_ftp.ini \"%programfiles%\\totalcmd\""
;!@InstallEnd@! | All files should be into SFX |
|
| Back to top |
|
 |
alban

Joined: 08 Feb 2009 Posts: 185 Location: aL
|
Posted: Mon Aug 30, 2010 3:49 am Post subject: |
|
|
| Thanks gora. |
|
| Back to top |
|
 |
user_hidden

Joined: 06 Dec 2007 Posts: 1562 Location: Canada eh!
|
Posted: Fri Jan 28, 2011 6:04 pm Post subject: |
|
|
latest 7zsfx modified module
7zsfx 1.50.1989 |
|
| Back to top |
|
 |
fly
Joined: 01 Sep 2005 Posts: 73
|
Posted: Thu Apr 14, 2011 1:02 pm Post subject: |
|
|
Any idea what file I need out of that? Or have there been config changes? I'm not really seeing any documentation on the site regarding it... |
|
| Back to top |
|
 |
gora

Joined: 07 Nov 2007 Posts: 136 Location: Ivanovo, Russia
|
Posted: Thu Apr 14, 2011 1:23 pm Post subject: |
|
|
| Website here. The last module, a list of changes only in the Russian part of the site. http://7zsfx.info/ru/ |
|
| Back to top |
|
 |
vmanda

Joined: 18 Apr 2007 Posts: 1503 Location: TM.Romania
|
Posted: Thu Apr 14, 2011 2:59 pm Post subject: |
|
|
| what is the stage: alpha beta or final for 7zsfx 1.50.1989? |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Thu Apr 14, 2011 5:32 pm Post subject: |
|
|
quote vmanda,
| Quote: | | what is the stage: alpha beta or final for 7zsfx 1.50.1989? |
My interpretation of the google translation of posts in the the OSZone site on the modified module by Oleg_Sch is that all the 1.5 versions are alpha. (latest 1.5.0.2079)
The latest "release", which I think might be a "final," was version 1.4.0.1492.
I have tried to determine the exact differences between the 1.4 and 1.5 versions but not been successful.
Hopefully, gora or someone else who really knows will elaborate. _________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Sat Apr 16, 2011 5:20 am Post subject: |
|
|
Update:
oleg_sch has updated the modified sfx module to 1.5.0.2088 and changed it status from "alpha" to "beta".
In this update the 7-zip sources were updated to version 9.21b. _________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
fly
Joined: 01 Sep 2005 Posts: 73
|
Posted: Wed Apr 20, 2011 8:03 am Post subject: |
|
|
My question still stands. What file do I need out of the zips? Every one I've tried has failed me.
edit: The only failure was me. Pretend I never asked this question. |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Wed May 04, 2011 6:53 am Post subject: |
|
|
Update:
oleg_sch has updated the modified 7zsfx module to 1.5.0.2100 beta.
From the log:
| Quote: | 1.5.0.2100-beta:
Fixed exceptions handling and loading msvcrt.dll in WinXP x64 / Win2003 x64
Update 7-Zip sources up to 9.22 |
7zsd_150_2100.7z _________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
user_hidden

Joined: 06 Dec 2007 Posts: 1562 Location: Canada eh!
|
Posted: Wed May 04, 2011 1:00 pm Post subject: |
|
|
| i use the 1.50 series but the "stable" series has an update as well 7zsd_141_2100.7z |
|
| Back to top |
|
 |
yumeyao Moderator

Joined: 27 Aug 2006 Posts: 1718 Location: Taiyuan, Shanxi, PR China
|
Posted: Wed May 04, 2011 2:17 pm Post subject: |
|
|
Oh, finally the msvcrt.dll issue in xp/2k3 x64 is resolved offcially. I don't need a custom build for this any more. _________________
My work list(Hosted by dumpydooby) |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Sun Nov 27, 2011 5:02 pm Post subject: |
|
|
oleg_sch has updated the 1.4 version of the modified 7zSD.sfx modules.
Version: 1.4.2.2308
Link to containing folder.
Link to file: 7zsd_142_2308.7z
Log:
Thanks, oleg_sch. _________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Thu Dec 15, 2011 6:24 am Post subject: |
|
|
oleg_sch has updated the 1.5 version of the modified 7zSD.sfx modules.
Version: 1.5.0.2308
Link to containing folder.
Log:
| Quote: | | 1.5.0.2308-beta: Correct russian lang strings & manifest |
_________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
|
| Back to top |
|
 |
ricktendo64

Joined: 21 May 2006 Posts: 3026 Location: Honduras
|
Posted: Sat Jan 21, 2012 10:44 am Post subject: |
|
|
Thanks shiner _________________
Will also accept any old PC hardware donations |
|
| Back to top |
|
 |
mooms

Joined: 27 Aug 2008 Posts: 451 Location: France
|
Posted: Tue Jan 24, 2012 4:07 am Post subject: |
|
|
Thanks  |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Sun May 13, 2012 5:59 am Post subject: |
|
|
oleg_sch has updated both the stable 1.4 line and the beta 1.5 line of the modified 7zSD.sfx modules to versions 1.4.3.2478 and 1.5.0.2478, respectively.
quote from logs,
| Quote: | | 1.5.0.2478: Fix current folder with 'waitall' prefix |
Direct links to archives:
Beta
7zsd_150_2478.7z
Stable
7zsd_143_2367.7z
7z SFX Tools
(7z SFX Tools is a 7zSFX that contains the latest modules, 7zSplit, and the CHM help manuals (ru, en))
Note: Both 7zSplit and the English version of the Manual have not been updated.
EDIT:
I just noticed Oleg_Sch is a new member of the forum.
I assume member Oleg_Sch is the developer of the modified 7zSFX module.
Welcome aboard! _________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
shiner

Joined: 08 Nov 2009 Posts: 623 Location: SE Asia
|
Posted: Mon May 21, 2012 4:42 pm Post subject: |
|
|
Oleg_Sch has updated the modified module:
versions 1.5.0.2485 and 1.4.4.2485
Downloads currently available here, (Russian page)
Direct link to Development version 1.6.0.2488
Oleg_Sch post at OSZone.net annoncing this release is here. (Russian page) _________________ "You can lead a horse to water, but you can't make it drink." |
|
| Back to top |
|
 |
bphlpt

Joined: 19 Apr 2008 Posts: 846
|
Posted: Tue May 22, 2012 1:50 am Post subject: |
|
|
Thanks shiner.
Cheers and Regards |
|
| Back to top |
|
 |
|