Open hu3rror opened 2 years ago
Can you try any one of these unpackers - https://github.com/ScoopInstaller/Scoop/pull/3502
Can you try any one of these unpackers - #3502
thank you, I'll take a look later
I referenced the contents of extras/bucket/ida-free.json and the parameters of bitrock installer, currently the installer can be extracted and installed. And this is my code blow:
"installer": {
"args": [
"--mode unattended",
"--unattendedmodeui minimal",
"--prefix \"$dir\""
]
},
"uninstaller": {
"file": "uninstall.exe",
"args": [
"--mode unattended"
]
},
However, two new problems have emerged.
The uninstaller does not work properly, when input scoop uninstall xxx
prompting that uninstall.dat cannot be found.
The desktop icon and the additional start menu icon are generated by default during installation. I can't find the relevant parameters to implement a way to remove the corresponding icon from the user side.
It looks a little difficult.
Looks like extraction is the only clean way. So it doesn't work with either NSIS, Inno or Wix?
Looks like extraction is the only clean way. So it doesn't work with either NSIS, Inno or Wix?
It seems that scoop does not support upx package decompression. This may have to be put on hold for now, thanks for the reply!
We can turn this into a feature request. UPX can be used to decompress these.
UPX just encode and compress single exe, and it is not related with program installation.
But it might be possible to uncompress it after decoding with UPX, right.
first, does Scoop need to handle(provides special decompression/installation method) each non-common compression/installation package?
install scripts can handle them if the packages can be unpacked with some utils.
Depends on the popularity of UPX. If it's not that popular, we can just do depends: upx
and use UPX command in the pre_install script.
Give some examples that the installers are compressed by UPX and could be extracted by 7zip later. Few developers compress installer with UPX which are mostly used by final executables.
I'm working on a manifest for an app that uses the bitrock installer creation tool. What parameters should I use to unpack such .exe installation package of this tree structure? I still wasn't sure what to do after looking at Scoop's wiki (T_T)
installer download link: https://scrivener.s3.amazonaws.com/Scapple-installer.exe
Thanks for reading and hope you can help me :)