7zs.sfx unsupported method
Asked Answered
P

2

2

I have setup project that I need to sfx him .

first I zip the .msi and .exe files :

%path7zip% a "%~dp0% %setup.7z" "%~dp0% %Output\Setup\*"

that work fine .

then I sfx the 7z file :

copy /b %path7zs% + "%~dp0% %config.txt" + "%~dp0% %Setup.7z" "%~dp0% %     
Output\Setup\MySetup.exe"

my config file is :

;!@Install@!UTF-8!
Title="my title"
Progress="no"
GUIFlags=""
OverwriteMode="0"
InstallPath="%TEMP%"
ExtractPathText="Select extraction path"
ExtractPathTitle="my title"
ExtractTitle="Extracting"
ExtractDialogText=""
ExtractCancelText="Abort"
RunProgram="\"%%T\\setup.exe\""
;!@InstallEnd@!

I get the MySetup.exe file but when I try to open it I get : 7-zip: unsupported method. Any ideas? Thank you

Presbytery answered 2/5, 2016 at 12:24 Comment(0)
A
2

Use 7zsd.sfx instead of 7zs.sfx

You can also use this file to fix a corrupted exe that says "unsupported method", without adding the config.txt, like that:

copy /b 7zSD.sfx + corruptedExe fixedExe.exe

Apophyllite answered 16/8, 2018 at 12:28 Comment(0)
P
1

captain_majid's solution worked for me. I also found in this post at SourceForge the suggestion to use -mm=lzma when generating the 7z file, which worked as well.

Would be nice to know the difference, though.

Psychosis answered 30/8, 2019 at 7:42 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.