Jump to content

Return exit code from batch file execution


Go to solution Solved by BPCM,

Recommended Posts

Posted

Hello,

I am having some difficulty getting Autoit to return an exit code from a given batch file. Please see example below:

As a test I am trying to run a batch file "error.bat" with the following code:

EXIT /B 1

I tried the following functions (and some other tricks), but I cannot seem to get anything but 0 as an exit code.

#include <Process.au3>
ConsoleWrite(RunWait("error.bat") & @CRLF)
ConsoleWrite(_RunDos("error.bat") & @CRLF)
ConsoleWrite(ShellExecuteWait("error.bat") & @CRLF)
ProcessWaitClose(run("error.bat"))
ConsoleWrite(@extended & @CRLF)

I suppose I could use the below workaround, but I would prefer not to.

@echo off
echo 1
;http://www.autoitscript.com/wiki/Snippets_%28_CMD_%29
#include <Constants.au3>
ConsoleWrite( _GetDOSOutput("error.bat") & @CRLF)
Func _GetDOSOutput($sCommand)
    Local $iPID, $sOutput = ""
    $iPID = Run('"' & @ComSpec & '" /c ' & $sCommand, "", @SW_HIDE, $STDERR_CHILD + $STDOUT_CHILD)
    While 1
        $sOutput &= StdoutRead($iPID, False, False)
        If @error Then
            ExitLoop
        EndIf
        Sleep(10)
    WEnd
    Return $sOutput
EndFunc   ;==>_GetDOSOutput

It looks like it is returning the exit code of the shell, and not the exit code of the script itself. Is there a way to get around this while still using an exit code?

 

Posted

I tried

$iRV = RunWait("test.bat")
ConsoleWrite($iRV & @LF)

and it works.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Test.bat has to be in the same directory as the AutoIt script.

My UDFs and Tutorials:

  Reveal hidden contents

 

  • Moderators
Posted

BPCM,

Same here. And for _RunDos and ShellExecuteWait as well. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

Can you please give us more information about your environment?

Which operating system do you run?

Which version of AutoIt do you use?

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted (edited)

I tried the script again but to no avail; both the scripts are located in the same folder. I have also tried using the full path for the batch file just to be sure.

I am running Windows XP, Autoit version v3.3.8.1

Below is the output in SciTE:

>"C:\Program Files\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.exe" /run /prod /ErrorStdOut /in "T:\scripts\remoteCopy\test.au3" /UserParams    
+>11:55:24 Starting AutoIt3Wrapper v.2.1.0.8    Environment(Language:0409  Keyboard:00000409  OS:WIN_XP/Service Pack 3  CPU:X64 OS:X86)
>Running AU3Check (1.54.22.0)  from:C:\Program Files\AutoIt3
+>11:55:24 AU3Check ended.rc:0
>Running:(3.3.8.1):C:\Program Files\AutoIt3\autoit3.exe "T:\scripts\remoteCopy\test.au3"    
0
+>11:55:24 AutoIT3.exe ended.rc:0
>Exit code: 0    Time: 1.724

Thanks for your help on this

Edited by BPCM
Posted

Can you please post the script and batch file you execute right now? So we have something to test.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Does your script actually run the batch file?

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

  Reveal hidden contents

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Posted (edited)
  On 11/1/2013 at 4:07 PM, water said:

Can you please post the script and batch file you execute right now? So we have something to test.

test.au3:

$iRV = RunWait("T:\scripts\remoteCopy\error.bat")
ConsoleWrite($iRV & @LF)

error.bat:

EXIT /B 1
Edited by BPCM
  • Solution
Posted (edited)

I just tested this script out on a brand new build of Windows 2008 R2 (I copied both files directly), and they work perfectly on that machine. It looks like this is an issue with my computer, and is not really and issue with AutoIt itself.

Sorry for the trouble, ill try and figure out why this isn't working on my machine

Edit: Found a solution. Changing the batch file did the trick:

http://stackoverflow.com/a/17124533/1100398

EXIT 1
Edited by BPCM
  • Moderators
Posted

BPCM,

Please let us know if you find anything - it might help someone else later. :)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

  On 11/1/2013 at 4:27 PM, Melba23 said:

BPCM,

Please let us know if you find anything - it might help someone else later. :)

M23

 

Got it working :) looks like XP does not like the /B thanks for your help everyone! (I referenced the stack overflow answer that helped me discover this)

Posted

Glad you got it working :)

My UDFs and Tutorials:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...