Windows XP - CMD.exe and preventing an "Exception Processing Message"

Asked By Eckhard Dienst on 28-Jan-12 08:41 AM

 How can I prevent Windows Exception Processing Message "C0000013", Parameter "75B0BF7C" 4  "75B0BF7C" "75B0BF7C"  in a batch ?

 The meaning is normally "Drive not ready" or missing USB-stick/CD/DVD/volume.

 I'd like to work with "errorlevel" but I don't know how.  

 May be I can get help here., 

 Eckhard

Venkat K replied to Eckhard Dienst on 28-Jan-12 11:00 AM
Normally, you can use exist statement to check whether the drive exist or not:

   C:
   IF NOT EXIST C:\WIN\NUL GOTO NOWINDIR
   CD \WIN
   :NOWINDIR
      REM 'Code if the drive doesn't exist'

Thanks
[)ia6l0 iii replied to Eckhard Dienst on 28-Jan-12 11:43 AM
I don't think cmd.exe throws this error. It is the program or command that you executed as a command , that could have thrown this error.

What command did you run?
kalpana aparnathi replied to Eckhard Dienst on 28-Jan-12 12:49 PM