So I have the following weird behavior:
I’m meanwhile using the Windows version of SheetCam in Linux using wine. I’m pretty proficient with Linux I would say, but I hardly have used wine so far as I didn’t really have the need. In any case, I basically did this:
export WINEPREFIX=~/.wine32
export WINEARCH=win32
wineboot
winetricks dotnet40 gdiplus d3dx9_36 # This is for a different software, I'm just adding this here for completeness
Now I download i.e. a new Development release for SheetCam and from my Downloads directory try to install it. I have a wine.sh script to run wine programs that looks like this:
#!/bin/bash
export WINEPREFIX=~/.wine32
export WINEARCH=win32
wine $*
Running this with the downloaded file results in the following error:
user@host:~/Downloads$ ~/scripts/wine.sh SheetCam\ TNG\ Development\ setup\ V6.9.14.exe
003f:err:module:__wine_process_init L"C:\\windows\\system32\\SheetCam.exe" not found
Any ideas why this could be?
Now if I copy the file to SheetCam.exe, the installation will work flawless.
user@host:~/Downloads$ cp SheetCam\ TNG\ Development\ setup\ V6.9.14.exe SheetCam.exe
user@host:~/Downloads$ ~/scripts/wine.sh SheetCam.exe
user@host:~/Downloads$
To make this more funny, even if I run a different version installer, it will always just call the SheetCam.exe of the version copied there (which at least is somewhat consistent ).