http://bugs.winehq.org/show_bug.cgi?id=4286
--- Comment #11 from Dan Kegel dank@kegel.com 2008-01-08 03:25:54 --- Yes, there is still an msxml3 problem here.
There were two problems that made testing this vexing. First, as Jan says, it only works with mdac25, mdac27 makes it exit very early. Second, also as Jan says, we don't register all the needed msxml3 things.
To get the app to really try to start up, you have to do
wineserver -k rm -rf .wine sh winetricks mdac25 msxml3 wine setupUS.exe cd .wine/drive_c/Program\ Files/eBay/Turbo\ Lister/ wine Tl.exe
(Annoyingly, the installer leaves a process around, so do a wineserver -k to get rid of it and all the wine helper processes.)
Omitting msxml3 in that recipe causes extra errors and a quick abort:
fixme:msxml:bsc_QueryInterface interface {6d5140c1-7436-11ce-8034-00aa006009fa} not implemented fixme:win:WIN_CreateWindowEx Parent is HWND_MESSAGE fixme:msxml:bsc_QueryInterface interface {79eac9e4-baf9-11ce-8c82-00aa004ba90b} not implemented fixme:msxml:bsc_QueryInterface interface {6d5140c1-7436-11ce-8034-00aa006009fa} not implemented fixme:msxml:xmlnode_get_nodeTypeString err:ole:CoGetClassObject class {3124c396-fb13-4836-a6ad-1317f1713688} not registered err:ole:CoGetClassObject class {7c6e29bc-8b8b-4c3d-859e-af6cd158be0f} not registered
I couldn't get it to work without installing native msxml3 before installing turbo lister, even if I set winver=nt40 before installing, as Jan suggested.