https://github.com/KurtBestor/Hitomi-Do ... /tag/v3.8c
The wine version is 8.7 and when you run the program
"msvcp140.dll could not be extracted!!
fopen: Permission denied"
An error occurs.
I understand that this is related to "pyinstaller".
msvcp140.dll could not be extracted
Re: msvcp140.dll could not be extracted
Hi,
This looks like bug https://bugs.winehq.org/show_bug.cgi?id=49334
As a dirty workaround you could try replace the (unicode) string "S-1-3-4" by "S-1-0-0" in the executable :
sed 's/\x53\x00\x2D\x00\x31\x00\x2D\x00\x33\x00\x2D\x00\x34\x00/\x53\x00\x2D\x00\x31\x00\x2D\x00\x31\x00\x2D\x00\x30\x00/g' hitomi_downloader_GUI.exe >hacked_hitomi.exe
And then run the "patched" binary "wine hacked_hitomi.exe".
This looks like bug https://bugs.winehq.org/show_bug.cgi?id=49334
As a dirty workaround you could try replace the (unicode) string "S-1-3-4" by "S-1-0-0" in the executable :
sed 's/\x53\x00\x2D\x00\x31\x00\x2D\x00\x33\x00\x2D\x00\x34\x00/\x53\x00\x2D\x00\x31\x00\x2D\x00\x31\x00\x2D\x00\x30\x00/g' hitomi_downloader_GUI.exe >hacked_hitomi.exe
And then run the "patched" binary "wine hacked_hitomi.exe".
Re: msvcp140.dll could not be extracted
Unfortunately, running with a patched file results in the same result.qwertymnb wrote: ↑Fri May 05, 2023 1:15 am Hi,
This looks like bug https://bugs.winehq.org/show_bug.cgi?id=49334
As a dirty workaround you could try replace the (unicode) string "S-1-3-4" by "S-1-0-0" in the executable :
sed 's/\x53\x00\x2D\x00\x31\x00\x2D\x00\x33\x00\x2D\x00\x34\x00/\x53\x00\x2D\x00\x31\x00\x2D\x00\x31\x00\x2D\x00\x30\x00/g' hitomi_downloader_GUI.exe >hacked_hitomi.exe
And then run the "patched" binary "wine hacked_hitomi.exe".
Re: msvcp140.dll could not be extracted
However, if you run with sudo as root privileges, the original file will also run. However, I am concerned about security problems because I run it with root authority.qwertymnb wrote: ↑Fri May 05, 2023 1:15 am Hi,
This looks like bug https://bugs.winehq.org/show_bug.cgi?id=49334
As a dirty workaround you could try replace the (unicode) string "S-1-3-4" by "S-1-0-0" in the executable :
sed 's/\x53\x00\x2D\x00\x31\x00\x2D\x00\x33\x00\x2D\x00\x34\x00/\x53\x00\x2D\x00\x31\x00\x2D\x00\x31\x00\x2D\x00\x30\x00/g' hitomi_downloader_GUI.exe >hacked_hitomi.exe
And then run the "patched" binary "wine hacked_hitomi.exe".
Re: msvcp140.dll could not be extracted
You could also use the following workaround:
https://github.com/pyinstaller/pyinstal ... -635963308
https://github.com/pyinstaller/pyinstal ... -635963308
Re: msvcp140.dll could not be extracted
Unfortunately, I don't think that setting is possible in the lxc environment.jkfloris wrote: ↑Fri May 05, 2023 3:31 pm You could also use the following workaround:
https://github.com/pyinstaller/pyinstal ... -635963308