Jump to content

change the script process name


 Share

Recommended Posts

I would like to check if a script is running  but they all run as 'AutoIT3.exe *32' Is there a way to change the name of the running script (like change deafult icon)?

I know i can compile to .exe then i can check if its running but would be nice to to the same thing with running script.

Link to comment
Share on other sites

If you are running a script in production then it schould run compiled. When developing do you really need to run multiple scripts at the sam time?

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

will _Singleton not work for that?

edit:  name it test.au3 and try it

#include <Misc.au3>

If $CmdLine[0] = 0 Then

    Run(@AutoItExe & " " & @ScriptDir & '\Test.au3 test_A', @ScriptDir)
    Run(@AutoItExe & " " & @ScriptDir & '\Test.au3 test_A', @ScriptDir)
    Run(@AutoItExe & " " & @ScriptDir & '\Test.au3 test_B', @ScriptDir)
    Run(@AutoItExe & " " & @ScriptDir & '\Test.au3 test_C', @ScriptDir)

elseIf $CmdLine[0] = 1 Then

    $sOccurrenceName = $CmdLine[1]
    If _Singleton($sOccurrenceName, 1) = 0 Then
        MsgBox(0, 'Name='&$sOccurrenceName, "OccurrenceName already exist")
        Exit
    Else
        MsgBox(0, 'Name='&$sOccurrenceName, "New Occurrence")
        Exit
    EndIf

EndIf

 

Edited by jvds
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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