Jump to content

Recommended Posts

Posted (edited)

 Hello Everyone :), Are you tired of searching the forum for getting both the exit code & the stdout output? Then you are in the right place!

Icon.png

With this UDF you can get the both output & exit code of the command or the console app! Or you can get the exit code of another process without having to use RunWait...

Features:

1. Simple & Lightweight (15 KB)

2. Detailed comments & description

3. Flexible functions with many optional parameters :)

A BIG THANKS TO PsaltyDS for the functions! 2 of the (main) functions in the UDF are his work :)

 

List of functions:

  Quote

_Process_RunCommand: Runs a command or a executable

_Process_WaitUntil: Waits until a process starts or quits. Also returns the exit code...

_Process_GetPID: Gets the PID of the process using the name of the process

_Process_GetPath: Get the path of a process along with its arguments (if any)

_Process_GetHandle: Gets the handle of a process, will be used later to retrive the exit code

_Process_CloseHandle: Closes the Process Handle of a process

_Process_GetExitCode: Gets the exit code of a process

_Process_DebugRunCommand: Debugs a command in CMD style, see the example.

Expand  

Downloads:

Grab the latest (in development) code from GitHub

 

Hope it may help you, TD :)

 

P.S Icon made by Freepik from www.flaticon.com, Modified by TheDcoder

Edited by TheDcoder
Add link to GitHub

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted (edited)

Why you comment this $PROCESS_QUERY_INFORMATION ?

EDIT: Oh I see it in ProcessConstants.au3

EDIT:
use 

#AutoIt3Wrapper_Au3Check_Parameters=-q -d -w 1 -w 2 -w 3 -w- 4 -w 5 -w 6 -w- 7

EDIT:
the UDF FileName should be ProcessEx.au3 as Process.au3 exist in standard UDF.

 

EDIT:
Modified UDF:  Process UDF 0.9.zip

 

 

btw.
@TheDcoder publish this UDF in download section.

 

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Search Au3Check in the help file. It's what we use for the UDFs so we don't break peoples code.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

Did you check my modification ?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

  • 3 weeks later...
Posted

Released new version :), Change log:

Added _Process_DebugRunCommand (Modified version of DebugRunCommand in the example)

Updated functions, now all set @error to non-zero on failure

 

Some minor improvements, TD :D

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

Released new version! :D, Change Log:

Added _Process_WaitUntil, Waits until a process starts or quits. Also returns the exit code...

Added _Process_GetPID, Gets the PID of the process using the name of the process

Updated _Process_DebugRunCommand, Now returns the output & exit code instead of True

Updated _Process_GetHandle, Now returns 0 instead of False on failure and now also accepts process names :)

 

Some minor improvements :), You must download this update! Feature Packed!

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

Might want to fix these errors...

"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(110,79) : warning: $hProcessHandle possibly not declared/created yet
            $hProcessHandle = _Process_GetHandle($vProcess) ; Get the process handle :)
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(110,79) : warning: $hProcessHandle: declared, but not used in func.
            $hProcessHandle = _Process_GetHandle($vProcess) ; Get the process handle :)
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(136,68) : warning: $aProcess possibly not declared/created yet
    $aProcess = ProcessList($sProcess) ; List processes with that name
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(235,58) : warning: $sPartialOutput possibly not declared/created yet
        $sPartialOutput = StdoutRead($iPID) ; Record the output
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(246,52) : warning: $iExitCode possibly not declared/created yet
    $iExitCode = _Process_GetExitCode($hProcessHandle)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(253,22) : warning: $nMsg possibly not declared/created yet
        $nMsg = GUIGetMsg()
        ~~~~~~~~~~~~~~~~~~~^
"C:\Users\guinness\Downloads\Process_UDF_1.1\ProcessEx.au3"(138,25) : error: _ArrayDisplay(): undefined function.
    _ArrayDisplay($aProcess)
    ~~~~~~~~~~~~~~~~~~~~~~~^

 

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

Posted

What the....!? What in the world is happening :blink:? I fixed those errors before releasing to the public... It happen to me before too, I ended up deleting my original file with many modifications, I had to re-download my own UDF and make the changes again step by step... I should investigate ISN AutoIt Studio before I make any modifications :(

 

Thanks @guinness for pointing out, TD :)

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

Updated current version: Removed AutoIt Check Derivative, was causing chaos... Turns out that the only glitched part was _ArrayDisplay... I didn't notice the Warnings because ISN does not show warnings :(

 

@guinness It will work now! TD :D

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

No, if this is a UDF and is to be included in other projects it should be passing Au3Check with those directive settings. We do it for the UDFs so code is clean and well written. Of course it's up to you whether or not you fix. Though be warned, it a user has a Global variable set as $aProcess (which is likely as user's tend not prefix global variables with $g_) then you have effectively broken their code, by overwriting with your data. Imagine if the UDFs did that? We would be getting complaints left right and centre.

UDF List:

  Reveal hidden contents

Updated: 22/04/2018

  • 2 weeks later...
Posted

Uploaded new version :), Changelog:

 

Added _Process_GetPath function

Added $PROCESS_COMMAND, It contains the path of cmd with required parameters to run a command

Added Au3Check derivative (again... without chaos this time :P)

Changed _Process_DebugRunCommand, Now it shows more info about the process.

Removed $sPath parameter in _Process_RunCommand function, now use $PROCESS_COMMAND to run commands

 

Some small improvements :), WARNING! THIS UPDATE CONTAINS MAJOR SCRIPT BREAKING CHANGES!, So update your script according to the changes ;)

 

Enjoy! TD :D

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

  • 1 month later...
Posted

Updated :D, Changelog:

Added $PROCESS_DEBUG option

Changed Constant's values, they now are powers of 2 (for compatability with BitAND)

Changed _Process_RunCommand to accept $PROCESS_DEBUG, You can now debug directly using this function :)

Changed _Process_DebugRunCommand, Now you can resize it

 

Also some little cleanups ;)

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

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
×
×
  • Create New...