https://bugs.winehq.org/show_bug.cgi?id=41651
Bug ID: 41651 Summary: WScript object name on wine is case sensitive which should not be the case (vbscript) Product: Wine Version: 1.9.22 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: vbscript Assignee: wine-bugs@winehq.org Reporter: dimaki@rocketmail.com Distribution: ---
To reproduce create a vbs file containing the below statement and run it from command line either via cscript or wscript command.
wscript.echo "Hello World"
Expected output does not show up. Instead the below fixme is output.
fixme:vbscript:stack_pop_disp not disp 0x143e58 {VT_EMPTY}
I have isolated the problem to the case in which the object name wscript is written. If I write it as WScript like below then the expected output does occur.
WScript.echo "Hello World"
VBScript is not case sensitive and the WScript object name can be used on windows no matter what case the individual letters are written in such as below.
WSCRIpt.echo "Hello World"