MSI Installer for Windows ARM64
A free file archiver for extremely high compression
Brought to you by:
ipavlov
Hi!
Will it be possible to provide an MSI installer for using 7zip on Windows ARM64 devices?
Currently the 7-zip.org website provides an MSI installer for x86 and x64 archs, but only a self-extracting executable for ARM64.
My use case: I'm a maintainer of the Scoop package manager and I'm currently adding support for ARM64 installations. Since Scoop uses 7zip as its primary unarchiver, it needs to be able to install 7zip via MSI, from the console, unattended.
Thanks, and have a nice day!
I still use old WIX program to create MSIs, that probably doesn't support ARM64.
Also I can't test and debug arm64 installers, if I do some new non simple feature.
So now I'm not ready to provide arm64 msi.
I would be more than happy to test any changes, if you require.
Also, is it possible to extract the provided .exe from the console (without any GUI popup) in a specified location? We will use the .exe in the meanwhile.
Last edit: Rashil Gandhi 2022-09-23
Yes, you can extract any files from .exe installer and use them.
Installation provides shell context menu integration and some another things, like uninstaller.
Okay, thanks!
So from the commandline I run
7z2201-arm64.exe /S /D="C:\Users\<user>\scoop\apps\7zip
but it pops up UAC. What parameter do I use to avoid UAC? I don't have admin rights.Last edit: Rashil Gandhi 2022-09-23
probably you can use
7zr.exe
x86 version fromhttps://www.7-zip.org/a/7zr.exe
Last edit: Igor Pavlov 2022-09-23
That will make installation quite complicated. Let me explain. The current Scoop manifest for 7zip looks like this:
If there's an ARM64 MSI, the manifest would just need another architecture field.
But right now, a custom script would be needed to first download x86 7zr.exe and then use that to extract the .exe installer.
If the .exe installer supported a parameter to suppress UAC, that would also work, because I would then modify the manifest similar to this one (this is for the 7 Taskbar Tweaker desktop app) - see the 'installer' field:
I searched around for a bit and found this ticket regarding MSI installer: https://sourceforge.net/p/sevenzip/discussion/45797/thread/1b0e3cc2b7/
What's the current status of that?
I don't know how to do it.
UAC
is forced bymanifest
in 7-zip installer.If it's some common problem for any program, then probably there is some external solution to disable UAC for any program. But I can't find simple solution with google search.