7zs.sfx unsupported method

2019-02-20 15:18发布

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

1条回答
女痞
2楼-- · 2019-02-20 15:30

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

查看更多
登录 后发表回答