Jump to content

Recommended Posts

Posted (edited)
  On 2/12/2013 at 5:43 PM, VIP said:
Expand  

 

  On 2/12/2013 at 5:38 PM, VIP said:

Link die 7zip_udf.zip :(

Expand  

Even this two links are linking to not existen file.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 10/6/2012 at 8:23 PM, Tlem said:

The archive with UDF, examples and Dlls can be downloaded here (don't forget to read the begining of the UDF to see what's new ^^).

Expand  

and

  On 8/20/2012 at 11:13 PM, JCarson said:

Second, I have been using the UDF from the below post and the newest custom-built DLL compatible with COM interfaces found at http://www.csdinc.co.jp/archiver/lib/7-zip32.html#download

Expand  

 

  On 8/20/2012 at 11:13 PM, JCarson said:

7Zip.au3

Expand  

 

  On 10/30/2012 at 10:27 AM, dany said:
Expand  

All this links works.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • Moderators
Posted
  On 1/28/2021 at 5:42 PM, mLipok said:

Unfortunately it does not work.

 

Expand  

Do you mean the download doesn't work? Or the ZIP file doesn't unpack? I downloaded the ZIP from that link just fine; I did not, however, unzip it and look at the contents.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Posted (edited)

Interesting. I no able download from this link, and from all other mentioned by me as not working.

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 1/28/2021 at 4:52 PM, JLogan3o13 said:

13 posts up:

  On 9/30/2013 at 6:21 PM, Rogue5099 said:

Try HERE :)

Expand  

 

Expand  

 

  On 1/28/2021 at 5:42 PM, mLipok said:

Unfortunately it does not work.

Expand  

@mLipok  : FYI - The link works for me. The file can be unzipped without any problems. I have attached it.

7Zip_UDF.zipFetching info...

Edited by Musashi

Musashi-C64.png

"In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move."

Posted

@Musashi I've already used the others. But thanks.

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

The main features of 7-Zip

  • High compression ratio in 7z format with LZMA and LZMA2 compression
  • Supported formats:
    • Packing / unpacking: 7z, XZ, BZIP2, GZIP, TAR, ZIP and WIM
    • Unpacking only: AR, ARJ, CAB, CHM, CPIO, CramFS, DMG, EXT, FAT, GPT, HFS, IHEX, ISO, LZH, LZMA, MBR, MSI, NSIS, NTFS, QCOW2, RAR, RPM, SquashFS, UDF, UEFI, VDI, VHD, VMDK, WIM, XAR and Z.

7z x -y -oC:\OutputDirectory X:\Filename.iso

Musashi-C64.png

"In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move."

Posted (edited)

Are passwords with spaces not supported? I tried creating a .zip file using a password containing a space and it dropped the remainder of the password after the space

Edit: Appears I need to wrap it in quotes. Will test and update.

Edit 2: Wrapping the password in double quotes works. There doesn't appear to be a method that works with double quotes and spaces, however. (I don't need to use quotes, I was just curious)

Edited by seadoggie01

All my code provided is Public Domain... but it may not work. ;) Use it, change it, break it, whatever you want.

  Reveal hidden contents
Posted (edited)

The actual test found that _7ZIPExtractEx_Example_using_Callback.au3 more than 2G file callback, stuck and unable to display the progress bar, memory overflow,  latest version of 7-zip32.dll 19.0.0.3, the problem remains.

Edited by netmaple
  • 3 months later...
Posted (edited)

I just check all files which was available here, collect them and post them to this download link/section:

 

REMARK / WARNING:
Some of them are little refactored.
Each have add links to post and files.

Only @Tlem version is changed.

- 06-05-2021 updated by mLipok:
    * Added: _7Zip_GetDLLPath()
    * Refactored: _7ZipStartup()
    * Changed: _7ZipStartup() - If Not FileExists($s_DLL_path) And (Not FileInstall .....
    * Changed: _7ZipStartup() - using @AutoItX64 instead of @OSArch - as DLL version is related not to OS but to program architecture
    * Changed: _7ZipShutdown() - Delete dll in temporary directory - not related to @compiled but to StringInStr($s_DLL_path, @TempDir)
    * Refactored: Examples

Let me know if something goes wrong with this versions.

EDIT:
So far I have a problem with the FileInstall() function, which on the one hand I want to keep FileInstall() feature for compatibility with the current UDF, and on the other hand I do not want to use FileInstall() as the UDF should not force the user to do so.
For example, I prefer to download missing files from HTTP.

Work in progress.

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Personally, I tend to think something like FileInstall shouldn't be included in a UDF since you need to edit the UDF to change the installed location. I'd think editing a UDF should be taboo as it can cause unexpected results if not done carefully.

I understand not wanting to break scripts, however. So maybe the best option is to make a new UDF (it could use a replacement anyways, as the old maintainer isn't active). As an added bonus, if you post it to GitHub, I'll absolutely help you with any needed changes and update any documentation. Then it could also change the functions to start with _7Zip_ (hmm, bold underscore doesn't look different) so it could be differentiated from this UDF

All my code provided is Public Domain... but it may not work. ;) Use it, change it, break it, whatever you want.

  Reveal hidden contents

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...