MSFN Forum: Universal Extractor - MSFN Forum

Jump to content


  • 44 Pages +
  • « First
  • 37
  • 38
  • 39
  • 40
  • 41
  • Last »
  • You cannot start a new topic
  • This topic is locked

Universal Extractor Extract files from any type of archive or application installer

#761 User is offline   Hanschke 

  • Junior
  • Pip
  • Group: Members
  • Posts: 89
  • Joined: 29-May 04

Posted 04 November 2007 - 07:23 AM

will there be a new release soon please? :)


#762 User is offline   ajua 

  • Custom Installer Maker
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,260
  • Joined: 16-April 05

Posted 07 November 2007 - 03:44 AM

can the new version incorporate support for updating innounp? this way we can only replace innounp.exe when a new version comes out.

#763 User is offline   BigRandalo 

  • Newbie
  • Group: Members
  • Posts: 49
  • Joined: 24-November 06

Posted 07 November 2007 - 07:52 AM

Quote

can the new version incorporate support for updating innounp? this way we can only replace innounp.exe when a new version comes out.
uhmmm, this is exactly what i do (by hand)... and it works... :D so did you ever try to do that?

#764 User is offline   nitro322 

  • Advanced Member
  • Group: Developers
  • Posts: 387
  • Joined: 05-November 04

Posted 09 November 2007 - 11:15 PM

View Postladiko, on Oct 13 2007, 05:35 AM, said:

could you add the extension msu? it is the file extension for microsoft updates for vista and server2008. universal extractor can unpack them, but the contect menu is missing.

Will check it out. Can you please post a link to an example file?

View PostKyotoMint, on Oct 29 2007, 07:06 PM, said:

Uni Extract fails for inno setup v5.1.6, however it can be unpacked fine if you use commandline for innounp.

Weird. I'll have to investigate. Thanks for reporting it.

View Postradigast, on Oct 31 2007, 11:36 AM, said:

I am looking to do a custom silent install of the Universal Extractor.

Try running the installer with '/?'. It'll show you a list of all supported command line switches and parameters. Specifically, look for available tasks. I think that should answer your question. If not, please post back.

View PostTechie9, on Nov 1 2007, 10:41 PM, said:

Executables compressed with "PECompact 2.x -> Jeremy Collake" don't seem to be able to be extracted with Uniextract 1.5 or the latest 1.6 Beta, but they are able to be extracted with unpecomp2.exe (able to be found via Google or www.pediy.com/tools/unpacker.htm). Will Uniextract be able to extract these in a future version?

Will check it out. Can you please post a link to an example file?

#765 User is offline   nitro322 

  • Advanced Member
  • Group: Developers
  • Posts: 387
  • Joined: 05-November 04

Posted 09 November 2007 - 11:18 PM

View Postelajua, on Nov 7 2007, 04:44 AM, said:

can the new version incorporate support for updating innounp? this way we can only replace innounp.exe when a new version comes out.

As BigRandalo suggested, this can be done easily yourself. Just download the new innounp and overwrite the older innounp.exe in the UniExtract bin\ directory. I don't plan on adding any automatic support for this, as new versions may behave differently and as a result break UniExtract if it's not properly tested.

#766 User is offline   nitro322 

  • Advanced Member
  • Group: Developers
  • Posts: 387
  • Joined: 05-November 04

Posted 11 November 2007 - 03:52 AM

View Postmaf, on Nov 3 2007, 02:33 AM, said:

Great utility :) But I tried to install it on another XP Pro SP2 system and though it seemed to install okay, it seems to have uninstalled itself and I ended up with the "HKEY_CLASSES_ROOT\jarfile\shell\uniextract" error (as mentioned here) on subsequent reinstallations.

Sorry, but I never did find an answer to this. Is this occurring with the 1.6 beta as well?

#767 User is offline   the_guy 

  • Creator of the Windows ME Service Pack
  • PipPipPipPipPip
  • Group: Members
  • Posts: 914
  • Joined: 15-July 05
  • OS:ME
  • Country: Country Flag

Posted 11 November 2007 - 06:52 AM

The following file is a Microsoft CAB archive, but is being treated as an InstallShield archive by Universal Extractor 1.5.

http://download.microsoft.com/download/b/c...f31/w95gray.exe

Also, whenever the /x switch is used on a file (Microsoft Hotfix), is there any way the description can be changed from a cab archive to a hotfix?

the_guy

#768 User is offline   centurion999 

  • Group: Members
  • Posts: 6
  • Joined: 11-November 07

Posted 11 November 2007 - 04:00 PM

View Postnitro322, on Nov 10 2007, 06:18 AM, said:

View Postelajua, on Nov 7 2007, 04:44 AM, said:

can the new version incorporate support for updating innounp? this way we can only replace innounp.exe when a new version comes out.

As BigRandalo suggested, this can be done easily yourself. Just download the new innounp and overwrite the older innounp.exe in the UniExtract bin\ directory. I don't plan on adding any automatic support for this, as new versions may behave differently and as a result break UniExtract if it's not properly tested.


Hi nitro322 :hello:

New version of innounp (0.20) works well with new version of inno setup but in uniextract no, it uses cmdtotal and files are bad.

cause:
peid internal scan not recognize new version of inno setup (show Borland Delphi 2.0 overlay)

My solution:

1) I add external signature to peid and modify this line $scantypes = _ArrayCreate('deep','hard','ext') to $scantypes = _ArrayCreate('ext', 'deep','hard')
2) modify this line case stringinstr($filetype, "Inno Setup Installer", 0) to case stringinstr($filetype, "Inno Setup", 0)
3) modify this line if (stringinstr(filereadline($debugfile, 1), "Version detected:", 0) _ to if (stringinstr(filereadline($debugfile, 1), " Version detected:", 0) _

All now works. :thumbup

Old bug: if folder already exist uniextract shows error but it extracts anyway. :rolleyes:

#769 User is offline   nitro322 

  • Advanced Member
  • Group: Developers
  • Posts: 387
  • Joined: 05-November 04

Posted 12 November 2007 - 01:05 AM

View Postthe_guy, on Nov 11 2007, 07:52 AM, said:

The following file is a Microsoft CAB archive, but is being treated as an InstallShield archive by Universal Extractor 1.5.

Thanks, will check it out.

View Postthe_guy, on Nov 11 2007, 07:52 AM, said:

Also, whenever the /x switch is used on a file (Microsoft Hotfix), is there any way the description can be changed from a cab archive to a hotfix?

Shouldn't be too hard. Will look into it.

View Postcenturion999, on Nov 11 2007, 05:00 PM, said:

New version of innounp (0.20) works well with new version of inno setup but in uniextract no, it uses cmdtotal and files are bad.

cause: peid internal scan not recognize new version of inno setup (show Borland Delphi 2.0 overlay)

My solution:

Cool, thanks for the detailed report. I'll definitely check it out.

#770 User is offline   j8048188 

  • Group: Members
  • Posts: 1
  • Joined: 16-November 07

Posted 16 November 2007 - 12:22 PM

I have one problem with inno setup and i was wondering how to fix it.

I have tried to extract Rocket Dock v.1.3.5, and it comes up with this error:
 
Signature detected: Inno Setup Setup Data (5.1.13)
This is not directly supported, but i'll try to unpack it as version 5110
; Version detected: 5113
Critical error: The setup files are corrupted. Please obtain a new copy of the program.
Unpacking failed. This version is not supported.
 


I updated to the latest version off of the sourceforge site, 1.9. it still does not work.

thanks.

The Program is the best i have ever used for extracting, by the way.

#771 User is offline   centurion999 

  • Group: Members
  • Posts: 6
  • Joined: 11-November 07

Posted 16 November 2007 - 02:42 PM

View Postj8048188, on Nov 16 2007, 07:22 PM, said:

I have one problem with inno setup and i was wondering how to fix it.

I have tried to extract Rocket Dock v.1.3.5, and it comes up with this error:
 
Signature detected: Inno Setup Setup Data (5.1.13)
This is not directly supported, but i'll try to unpack it as version 5110
; Version detected: 5113
Critical error: The setup files are corrupted. Please obtain a new copy of the program.
Unpacking failed. This version is not supported.
 


I updated to the latest version off of the sourceforge site, 1.9. it still does not work.

thanks.

The Program is the best i have ever used for extracting, by the way.


Try this version h**p://innounp.sourceforge.net/test020.rar :thumbup work

#772 User is offline   horsecharles 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 386
  • Joined: 21-January 05

Posted 23 November 2007 - 11:47 AM

Nitro, I'm gonna cross-post here-- serves to bump up this thread as well...

Context menu entries for Universal Extractor have disappeared(for .zip, .msi & .exe), on Vista Home Premium Sp1(btw no such issues on Win XP SP3). I've tried reinstalling, w/ all possible context entries enabled and .zip associated w/ it, of course-- to no avail. Send To shortcut remains in place.

Of note-- may help you-- re related programs:

Those with issues--
PeaZip: identical situation-- all entries disappeared as well + all Send To entries still in place.
ZipInstaller: context entry ONLY appears after archive is opened & listed in Explorer 'Folder' Pane-- ALTHOUGH ONLY if right-clicked from that side, NOT if right-clicked in File pane.
ExtractNow context entries have disappeared for .exe files, but for .zip have NOT disappeared.
7Zip main context 'name' entry is still there, BUT its command submenu NEVER LOADS.

Other related programs "with no such issues(each/all the very latest release, even if beta/rc/etc.)": #7Z, AlZip, IzArc, GSplit.

BTW
A. Universal Extractor, even before reinstall, was the last program of its kind installed.
B. SP1 for Vista was only installed 2 days ago.
C. Universal Extractor was upgraded to present Beta 1.6, w/ no issues, from the day it was released to the public.

Dollars to Doughnuts this is a Vista change issue--

1. NO such issues on WinXP SP3, &

2. Going by MS deadline to programmers to comply with all Vista OS changes: something along the lines that 'initially' older programs could still run normally w/ some older behaviors allowed & expected folder locations still in place... until xx date.

One other possibility:

some critical windows services "may need to be set to Automatic" for Universal Extractor to function properly??? i constantly weed out unnecessary ones-- although rarely Disable, usually set to Manual.

For instance: i had slsvc & SLUINotify set to Manual(after subsequent restart one Started, the other did not-- btw one depends on the other: cannot be started / stopped if the other one is stopped / started)... and lost Control Panel functionality... they both MUST be set to Auto.

And... i DON"T have MS Update set to auto.

Again, fantastic work on your part... thank you.

This post has been edited by horsecharles: 23 November 2007 - 11:49 AM


#773 User is offline   Stranger 

  • Newbie
  • Group: Members
  • Posts: 12
  • Joined: 01-December 06

Posted 23 November 2007 - 10:10 PM

Universal Extractor doesn't decompile CHMs made with ChmBookCreator http://smallweb.ru/l...bookcreator.htm

#774 User is offline   Hanschke 

  • Junior
  • Pip
  • Group: Members
  • Posts: 89
  • Joined: 29-May 04

Posted 24 November 2007 - 10:56 AM

a few updates are released:

7-Zip 4.56 beta - http://downloads.sou...enzip/7z456.exe

ARJ32 3.14a - http://mysite.verizo.../arj32v314a.exe

StuffIt Expander 12.0.0.3 - http://www.stuffit.c...-downloadv.html

maybe there are other updates too but i dont find the most files :( maybe you can make a refresh build for us?

#775 User is offline   azque 

  • Group: Members
  • Posts: 1
  • Joined: 26-November 07

Posted 27 November 2007 - 01:19 AM

Hi,

Can you fully automate the command line by adding the following switches?
  • Rename extracted files automatically if file with the same name already exists. Renamed file will get the name like 'filename(N).txt', where 'filename.txt' is the original file name and 'N' is a number starting from 1 and incrementing if file exists.
  • Set a password to decrypt files during extraction.
  • Disable error and/or prompt messages.
  • Recurse subfolders for archives
  • Specify another log file name instead of the default UniExtract.txt in the switch, for example, -ilogc:\log\backup.log
  • Specify default extraction tools to avoid user intervention (maybe put this one in the INI)

Thanks!

#776 User is offline   turrethead 

  • Group: Members
  • Posts: 1
  • Joined: 18-November 07

Posted 27 November 2007 - 06:17 AM

Hi,

Just want to give my thanks for this fantastic little program. I use it all the time and my system is so much cleaner because of it. Extremely well done. :thumbup

turrethead

#777 User is offline   weEvil 

  • n00b
  • PipPipPipPipPip
  • Group: Members
  • Posts: 944
  • Joined: 21-August 06

Posted 11 December 2007 - 03:14 PM

I love this tool. Just wanted to say thanks.

#778 User is offline   war59312 

  • Will's Blog
  • PipPipPipPipPip
  • Group: Members
  • Posts: 932
  • Joined: 07-June 02

Posted 11 December 2007 - 09:28 PM

How about hiding the cmd windows that open up:

http://www.msfn.org/board/Tool-Hide-consol...ows-t49184.html

Or at least an option some how, say a registry setting or something. After all you already have that night progress window so why show ugly cmd windows.

Thanks!

#779 User is offline   wordz101 

  • Group: Members
  • Posts: 1
  • Joined: 22-December 07

Posted 22 December 2007 - 07:29 PM

I'm no programmer but regarding hiding the cmd window maybe "cmdhide" could help - http://siginetsoftwa...thread.php?t=18
Thanks for all your work on Universal Extractor nitro322 and Merry Christmas.

#780 User is offline   Camarade_Tux 

  • MSFN Addict
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,760
  • Joined: 22-May 05

Posted 23 December 2007 - 02:50 AM

In fact there is no need for any external program as AutoIt which UniExtract is coded in gives this ability to the developper, natively.

Share this topic:


  • 44 Pages +
  • « First
  • 37
  • 38
  • 39
  • 40
  • 41
  • Last »
  • You cannot start a new topic
  • This topic is locked

6 User(s) are reading this topic
0 members, 6 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy