while running batch file through wine output is not shown

Questions about Wine on Linux
Locked
rupali
Level 1
Level 1
Posts: 5
Joined: Tue Feb 13, 2018 8:24 am

while running batch file through wine output is not shown

Post by rupali »

Hi
I am running batch file in ubuntu through wine. The commands are running properly but i have to show some output but it is not showing instaed it showning "00ae:fixme:exec:SHELL_execute flags ignored: 0x00000100". what does it means. i am adding two pics: one showing the output actually appearing and second is what output should have to appear.
Attachments
that output should appear
that output should appear
wine.PNG (6.46 KiB) Viewed 1155 times
actual output
actual output
wineconsole.PNG (4.45 KiB) Viewed 1155 times
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: while running batch file through wine output is not show

Post by Bob Wya »

@rupali

That's not really enough information to diagnose your issue...
You'd need to post the contents of the batch file - for anyone to know what the issue is with this.

Wine fixme message are informational terminal messages RE unsupported Windows features.
In this case unsupported parameters in the SHELLEXECUTEINFO structure. Specifically the SEE_MASK_NOASYNC flag.

To disable "noisy" Wine fixme messages, etc. is easy enough...

Code: Select all

export WINEDEBUG=fixme-all
See: WineHQ Wiki: Debug Channels.

Bob
Locked