For example:
Download this ZIP file: http://dslstats.me.uk/files/dslstats32W-6.5.zip
Everything in the ZIP file is in a directory “dslstats32W-6.5”.
However when I extract using right click “Extract Here” the name of the directory created is “2W-6.5” !
I am running PA 22.00.09 on Windows 11. I have seen the same happen with some other kinds of archive too.
Hello!
Is there currently no portable version of PA2023 available?
(When) do you plan to release one?
Thanks!
If I compress a folder to a .pa using right click, Compress to folder.pa and use the new Windows 11 menu then the Options, Configuration, Miscellaneous, Use normal relative path setting is always enabled.
But I like this option disabled so I have to use the old style menu in order to get PA to compress a folder in the way I wish.
Just tried using the Modern (Windows 10) Icon set and seeing a few missing icons in both PowerArchiver Burner and PowerArchiver Encryption screens . They are all there in the Minimalistik icon set and the only difference I can see is the former is blue and the latter grey. In version 22.00.9
powerarc_2023-09-18_17-00-19.png
powerarc_2023-09-18_17-01-05.png
PA 22.00.09
344c6c52-f03f-407b-ad76-8130b31936bb-image.png
PA 22.00.09 shows a nag screen, when I try to open some setting windows. I have already PA 2023 Toolbox and PA shows, that it’s licensed in the info dialog.
a860bd81-3e71-4ce0-9988-74cd4189d43e-image.png
0836bc83-8046-4a91-bc7b-68bd231100a3-image.png
PA 22.00.09
Some labels in the help toolbar are not translated:
b3c1f5c4-b73d-49d8-9ed0-56294840838c-image.png
I’m looking forward to deploying PowerArchiver 2023 to my users. Can you tell us when the MSI will be available for download and distribution?
Thanks.
Hi there,
there were some security issues fixed in 7zip:
https://www.zerodayinitiative.com/advisories/ZDI-23-1165/
https://www.zerodayinitiative.com/advisories/ZDI-23-1164/
As it seems, that PowerArchiver and PACL use the 7zip libraries, could you please update them to the latest version?
Hi,
From where I get PAVD2023.EXE? PowerArchiver 2023 tries to open it.
But it seems, it tries to download PAVD2021.EXE.
Thanks
I noticed that the version of ZPAQ used is older than the latest released 7.15 https://mattmahoney.net/dc/zpaq.html also there seems to be a newer fork that adds several features https://github.com/fcorbelli/zpaqfranz
It would be useful to implement this latest version (it also maintains the same syntax and behavior as the latest official release if used the -715 flag) and add when opening a zpaq file a choice of the version of the files to show (e.g. as dummy folders represented the various versions present). Since any previous changes are stored with this format, it is possible to extract a snapshot of a certain date/version.
If I open a password-protected zipper file (created with WinRAR but I think that’s irrelevant), open it with PowerArchiver and run “Remove Encryption” on the same file, then reopen it and add a password with “Encrypt Archive,” the resulting archive will be protected with the old ZipCrypto algorithm and not AES as indicated.
(this can be verified, for example, by trying to open the archive files with Windows Explorer, which does not support the AES algorithm)
PA 21.00.18 running on Windows 7 64 bit.
I made a big .PA file and thought I’d check it was made correctly with Menu / Actions / Test.
Discovered:
a) PA always issues a UAC prompt to do this!
b) PA always says there are many errors in PA files.
Help with MFC-based plug-in
-
We have an internally-developed archive format that I would like to write a PowerArchiver plug-in for (which would also be for internal use only). The class that handles the archive file is MFC-based, and so I have started with an MFC DLL project. Using example source from Total Commander’s site, I believe I have the basics in place for an “operational” plug-in (OpenArchive, ReadHeader, ProcessFile, CloseArchive). But, when I add the plug-in to PA and then attempt to open a file with the plug-in’s associated extension, PA returns with the error dialog “PowerArchiver cannot open this file. It does not appear to be a valid archive.” I’m not well-versed as to the best way to attempt to debug the plug-in and see what might be going wrong. Can anyone share some skeleton source for a working MFC-based plug-in that I could use as reference? Thanks.
-
Did you try looking at current TC plugins, most of them come with source:
http://www.totalcmd.net/that should help you. Also, make sure plugin is entered properly in PA.
thanks,
-
I did manage to get a plug-in up and working by using some of the shared source you pointed me to as a starting point. I do have a couple more questions, though:
1. GetPackerCaps never seems to be called. Does PA make use of this function? Reason being, I implemented DeleteFiles and added PK_CAPS_DELETE to the return value of GetPackerCaps, but PA still does not let me delete a file from my archive. I even tried removing and re-adding the plug-in from within PA first, but no luck. Does PA allow for plug-in formats to be modified (delete, freshen, add, etc.)?
2. I have need, under certain circumstances, to prompt the user for input during file extration. Currently, using AfxMessageBox, the message dialog is displayed and responds to keyboard input, but not mouse input (busy cursor is shown and no clicks are allowed). Is there a better way to handle this? Or is this somthing that I should not be doing altogether? (EDIT: This appears to only occur when dragging the file from PA and dropping it into the desktop or other Explorer window. Extract by double-click, or the Extract dialog works fine.)
Thanks for your help. PA’s plug-in architecture has saved me from having to write a GUI front-end myself.
-
1. PA currently does not support everything. I will check with our dev team if that particular function is used. We planned to implement more for next major release, but our plate is sooooo full right now :-).
2. Will check as well.
I am glad someone is making use of it :P.
-
One more (at the moment): I managed to determine that I needed to put my plug-in and settings.ini into a BH archive, then rename it as a .ppf in order to get PA to auto-install it. Using the settings.ini from the existing plug-ins as a guide, I was able to get the plug-in set up for a single extension. Is there a way to do multiple extensions from one settings.ini? I’ve tried:
[General]
File=myPlugIn.wcx
Format1=ex1
Format2=ex2
Format3=ex3But only the first extion is assigned to the plug-in. Any way to pull this off currently? Thanks again.