wineconsole cmd start command introduces error

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
shadeless
Level 1
Level 1
Posts: 6
Joined: Thu Dec 21, 2017 12:48 am

wineconsole cmd start command introduces error

Post by shadeless »

Hi all,
I am new to Wine. I am currently trying to run a .BAT file that calls the start command many times. However, every time I run the start command on a wineconsole, I get an error. Here is how I replicate the error.

From a unix terminal

Code: Select all

 wineconsole cmd 
A wine command prompt pops up. In that wine command prompt I input

Code: Select all

start
Another wine command prompt starts, but in the original unix terminal, I get this error message

Code: Select all

01db:fixme:exec:SHELL_execute flags ignored: 0x00000100
The numbers change everytime I run the code, but the basic message stays the same. I have not run into this error message for a couple of other DOS commands I've tried.

Can someone help me understand why I'm getting this error message and how I can avoid it?

Thank you.

P.S. Unfortunately, I'm not familiar with DOS commands. It took me too long to get to this level of understanding of my problem.
User avatar
dimesio
Moderator
Moderator
Posts: 13205
Joined: Tue Mar 25, 2008 10:30 pm

Re: wineconsole cmd start command introduces error

Post by dimesio »

Fixmes aren't errors; they are merely unimplemented functions. If your app is working, don't worry about them. The one you posted is both common and harmless.
shadeless
Level 1
Level 1
Posts: 6
Joined: Thu Dec 21, 2017 12:48 am

Re: wineconsole cmd start command introduces error

Post by shadeless »

Thank you.
Locked