Jump to content

Run muliple batch file logging the time taken & status to txt file


Go to solution Solved by water,

Recommended Posts

Posted

Dear all,

        I am new to Auto I and I need all your kind suggestons & help.

I have received many batch files and they need to be executed sequentially.

Each batch files takes a lot of time and I want to use Auto It to run them sequentially

logging the time taken and status of each batch file to txt file.

Now I am able to run one batch file and pop time taken. But want to change.
Please help me.

My batch files:

Test1.bat~Test20.bat (20 files)

My present code:

$StartTime=TimerInit()

RunWait("C:TestFileTest1.bat")

$EndTime=TimerDiff($StartTme)

Msgbox(0,"Time ","Time taken to run batch 1 is:"&$EndTime)

Kindly note each batch file exits after a key is clicked.

Can any body help how to run them sequentially and log the time and status of batch file completed (Success/error)

Thanking you in advance.

Posted

It's not better to convert the batch files to autoit code? So it's more manageable for you

Nothing is so strong as gentleness. Nothing is so gentle as real strength

 

Posted

I was gonna sugest that, also, remove the pause from the end of the batch.

This is how i would do it:

For $i = 1 to 20
$StartTime=TimerInit()
RunWait("C:\TestFile\Test"&$i&".bat")
$EndTime=TimerDiff($StartTme)
Msgbox(0,"Time ","Time taken to run batch "&$i&" was:"&$EndTime)
Next
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

  • Solution
Posted

To log the "status" you need this enhanced version:

For $i = 1 to 20
    $StartTime=TimerInit()
    $iReturnValue = RunWait("C:\TestFile\Test" & $i & ".bat")
    $EndTime = TimerDiff($StartTme)
    Msgbox(0,"Time ","Time taken to run batch " & $i & " was: " & $EndTime & ", Status returned: " & $iReturnValue)
Next

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted

Replace MsgBox with FileWriteLine.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Posted

Glad to be o service :D

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

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...