https://bugs.winehq.org/show_bug.cgi?id=17368
--- Comment #13 from Anastasius Focht focht@gmx.net --- Hello Fabian,
--- quote --- The COM Object itself should be implemented as of current wine, the CLSID exists and can be loaded. It just crashes later on. Do you know what exactly goes wrong here? I don't know a lot about ole... --- quote ---
well, this bug report was never about 'Shell.Application' object but zipfldr namespace extension.
You can also test things by using scriptlets, no need for the app.
--- snip --- Set wshShell = CreateObject("WScript.Shell") strCurDir = WshShell.CurrentDirectory
set objShell = CreateObject("Shell.Application") set objZip = objShell.NameSpace(strCurDir & "newods.zip") If objZip Is Nothing Then WScript.Echo "objZip null!" WScript.Quit 1 End If
WScript.Echo "zip entries found: " & objZip.Items.Count --- snip ---
--- snip --- $ wine cscript testzip.vbs
objZip null! 035c:fixme:wscript:Host_Quit (1) semi-stub: no script engine clean up --- snip ---
Regards