InnoSetup MultiArc Addon
Moderators: Hacker, petermad, Stefan2, white
InnoSetup MultiArc Addon
InnoSetup MultiArc Addon
Uses InnoUnp, the Inno Setup Unpacker Version 0.07 ( supports Inno Setup versions 3.0.0-beta through 4.1.8 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Uses InnoUnp, the Inno Setup Unpacker Version 0.07 ( supports Inno Setup versions 3.0.0-beta through 4.1.8 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Works fine! Thanks for this...I was waiting for an Inno setup unpacker for a long time.
How do you use it ? Because if associated with .exe, all exe files will be shown with achive icon. So I use it with extension 'inno" and just rename the executables I want to unpack to *.inno and then unpack. Do you do something like this or do you have another methode ?
How do you use it ? Because if associated with .exe, all exe files will be shown with achive icon. So I use it with extension 'inno" and just rename the executables I want to unpack to *.inno and then unpack. Do you do something like this or do you have another methode ?
...BRB...
Minor correction in Addon.
Source: innounp forum at SF
Source: innounp forum at SF
Code: Select all
; -----------------------------------------------------------------------
; Inno Setup ( 3.0.0-beta through 4.1.8)
; MultiArc Addon by Gnozal
;
; Uses: Innounp v0.07
; Homepage: http://innounp.sourceforge.net/
;
; Changes
; 2004-04-02 by Maxwish
; change: datestring in format0 from "yyyy.mm.dd" to "yyyy.tt.dd"
; reason: date not displayed correcty - see innounp forum
; -----------------------------------------------------------------------
[InnoSetup]
Description="InnoSetup"
ID=49 6E 6E 6F
IDPos=48
Archiver=C:\PROGRAM FILES\WINCMD\WCXPlugin\MultiArc\innounp.exe
List=%P -v %AQ
Start="^--------------------------------------"
End="^--------------------------------------"
Format0="zzzzzzzzzz yyyy.tt.dd hh:mm nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn"
Extract=%P -e %AQ {@%LQ}
ExtractWithPath=%P -x %AQ {@%LQ}
Debug=0
; -----------------------------------------------------------------------
...BRB...
I do not associate it with EXE. Just add the .addon to MultiArc.ini. Then if you do [Ctrl+PageDown] on the InnoSetup EXE, you should see the files.Maxwish wrote:Works fine! Thanks for this...I was waiting for an Inno setup unpacker for a long time.
How do you use it ? Because if associated with .exe, all exe files will be shown with achive icon. So I use it with extension 'inno" and just rename the executables I want to unpack to *.inno and then unpack. Do you do something like this or do you have another methode ?
PS : in WinCMD.ini [PackerPlugins] section, you have to place the MultiArc entries before the plugins wich handle EXE files (like resource and icons). If you don't, you will see icons and stuff and not the files.
Thanks. The ZIP file is modified.Maxwish wrote:Minor correction in Addon.
Source: innounp forum at SF
2gnozal8
May I add it to www.totalcmd.net with Maxwish's correction?
May I add it to www.totalcmd.net with Maxwish's correction?
yes, of course2gnozal8
May I add it to www.totalcmd.net with Maxwish's correction?

thanks, that worked.gnozal8 wrote:PS : in WinCMD.ini [PackerPlugins] section, you have to place the MultiArc entries before the plugins wich handle EXE files (like resource and icons).
After I moved MultiArc to the top of the list, I can now use the CTRL-PAGEDOWN combination to enter the setup files. That didn't work before...
...BRB...
- ghisler(Author)
- Site Admin
- Posts: 50386
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Maybe some other plugin in the list is also using "by content" detection, and claims to handle the file?
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
InnoSetup MultiArc Addon UPDATE : Version 0.08
Uses InnoUnp, the Inno Setup Unpacker Version 0.08 (supports Inno Setup versions 3.0.0-beta through 4.2.1 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Uses InnoUnp, the Inno Setup Unpacker Version 0.08 (supports Inno Setup versions 3.0.0-beta through 4.2.1 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Here's my improved Addon. Especially the speed is increased by using the Batch mode. I removed the { } from the extract strings, IMO they are not needed ?
Code: Select all
; -----------------------------------------------------------------------
; Inno Setup ( 3.0.0-beta through 4.2.1)
; MultiArc Addon by Gnozal
;
; Uses: Innounp v0.08
; Homepage: http://innounp.sourceforge.net/
;
; Changes
; 2004-04-02 by Maxwish
; * corrected datestring in 'format0' from "yyyy.mm.dd" to "yyyy.tt.dd"
; 2004-04-19 by Maxwish
; * added '-m' parameters (now will also show embedded files)
; * added 'BatchUnpack=1' (improves speed)
; * removed { } from {@%LQ} in 'extract' strings (not needed)
; -----------------------------------------------------------------------
[InnoSetup]
Description="Inno Setup (v3.0.0-beta to v4.2.1)"
Archiver=T:\wcx_multiarc\innosetup\innounp.exe
Extension=exe
ID=49 6E 6E 6F
IDPos=48
Start="^--------------------------------------"
End="^--------------------------------------"
Format0="zzzzzzzzzz yyyy.tt.dd hh:mm nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn"
List=%P -v -m %AQ
Extract=%P -e -m %AQ @%LQ
ExtractWithPath=%P -x -m %AQ @%LQ
;Test=
;Delete=
;Add=
;Move=
;InputString=
IgnoreErrors=0
SkipEmpty=0
SkipDirsInFileList=0
SearchForUglyDirs=0
BatchUnpack=1
UnixPath=0
AskMode=0
SkipLIST=1
Debug=0
; -----------------------------------------------------------------------
...BRB...
InnoSetup MultiArc Addon UPDATE : Version 0.09
Uses InnoUnp, the Inno Setup Unpacker Version 0.09 (supports Inno Setup versions 3.0.0-beta through 4.2.1 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Uses InnoUnp, the Inno Setup Unpacker Version 0.09 (supports Inno Setup versions 3.0.0-beta through 4.2.1 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
InnoSetup MultiArc Addon UPDATE : Version 0.10
Uses InnoUnp, the Inno Setup Unpacker Version 0.10 (supports Inno Setup versions 3.0.0-beta through 4.2.1 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip

Uses InnoUnp, the Inno Setup Unpacker Version 0.10 (supports Inno Setup versions 3.0.0-beta through 4.2.1 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
InnoSetup MultiArc Addon UPDATE : Version 0.11
Uses InnoUnp, the Inno Setup Unpacker Version 0.11 (supports Inno Setup versions 3.0.0-beta through 4.2.2 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Uses InnoUnp, the Inno Setup Unpacker Version 0.11 (supports Inno Setup versions 3.0.0-beta through 4.2.2 ) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
InnoSetup MultiArc Addon UPDATE : Version 0.13
Uses InnoUnp, the Inno Setup Unpacker Version 0.13 (supports Inno Setup versions 3.0.0-beta through 5.0.3-beta) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
Uses InnoUnp, the Inno Setup Unpacker Version 0.13 (supports Inno Setup versions 3.0.0-beta through 5.0.3-beta) wich is included.
http://people.freenet.de/gnozal/InnoSetup_MultiArc_Addon.zip
innounp, the Inno Setup Unpacker
Version 0.15
http://innounp.sourceforge.net/get-latest-innounp.php
How to use MultiArc & InnoUnp with IETotal.wcx?
When MultiArc is first, IETotal is no use.
When IETotal is first, MultiArc is no use.
InnoUnp can unpack Inno setup very well.
But IETotal can do something else.
Version 0.15
http://innounp.sourceforge.net/get-latest-innounp.php
How to use MultiArc & InnoUnp with IETotal.wcx?
When MultiArc is first, IETotal is no use.
When IETotal is first, MultiArc is no use.
InnoUnp can unpack Inno setup very well.
But IETotal can do something else.