From: Dmitry Kislyuk <dimaki(a)rocketmail.com> /d allows the script to be debugged, but does not apparently affect its execution otherwise (in particular, the user still needs to attach the debugger). /u is specific to cscript, and specifies Unicode console I/O. We do not currently implement console I/O in cscript/wscript anyway. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49905 --- programs/wscript/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/programs/wscript/main.c b/programs/wscript/main.c index 12571181491..6c8eaaa542a 100644 --- a/programs/wscript/main.c +++ b/programs/wscript/main.c @@ -393,6 +393,10 @@ static BOOL set_host_properties(const WCHAR *prop) wshInteractive = VARIANT_FALSE; else if(wcsicmp(prop, L"nologo") == 0) WINE_FIXME("ignored %s switch\n", debugstr_w(L"nologo")); + else if(wcsicmp(prop, L"d") == 0) + WINE_FIXME("ignoring /d\n"); + else if(wcsicmp(prop, L"u") == 0) + WINE_FIXME("ignoring /u\n"); else { WINE_FIXME("unsupported switch %s\n", debugstr_w(prop)); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9065