https://bugs.winehq.org/show_bug.cgi?id=24529
--- Comment #14 from Louis Lenders xerox.xerox2000x@gmail.com --- Created attachment 65551 --> https://bugs.winehq.org/attachment.cgi?id=65551 add reg value for DigitalProductId
Found downloadlink for old version here: master.elant.cz/SAT/VU+/Tools/TSDoctor_Ger.rar
The crash really seems to come from missing registry key. When key is added (like in patch) crash is gone, and it says (in German) "Cannot be run in Virtual Machine"
The program checks if it is run in wine (checks for entry points wine_get_version and wine_nt_to_unix_file_name in ntdll); I just stupidly replaced all occurences of this in wine-source by putting extra letter before it:
find ./ -type f -exec sed -i 's/wine_nt_to_unix_file_name/qwine_nt_to_unix_file_name/g' {} ;
find ./ -type f -exec sed -i 's/wine_get_version/qwine_get_version/g' {} ;
Then windowmessage changes in: "don`t start program via rpcss.exe"
Anyway, if i remove the registry key it goes crashing again. As the program does not want wine to run it, i`d say I`ll send patch, and if accepted let`s close this;