Jump to content

Search the Community

Showing results for tags 'calling file shortcut'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General
    • Announcements and Site News
    • Administration
  • AutoIt v3
    • AutoIt Help and Support
    • AutoIt Technical Discussion
    • AutoIt Example Scripts
  • Scripting and Development
    • Developer General Discussion
    • Language Specific Discussion
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Categories

  • AutoIt Team
    • Beta
    • MVP
  • AutoIt
    • Automation
    • Databases and web connections
    • Data compression
    • Encryption and hash
    • Games
    • GUI Additions
    • Hardware
    • Information gathering
    • Internet protocol suite
    • Maths
    • Media
    • PDF
    • Security
    • Social Media and other Website API
    • Windows
  • Scripting and Development
  • IT Administration
    • Operating System Deployment
    • Windows Client
    • Windows Server
    • Office

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Location


WWW


Interests

Found 1 result

  1. Hello, I'd like to determine, "from what shortcut" a compiled autoit script was run. The background is, that several script versions shall be consolidated, an I have no clue, where the users might have placed fileshortcuts to oboslete old script verion names. eg. MyScript.exe, MyScript-1.exe MyScript-2.5.exe And shortcuts might be placed on the userdesktop, alluserdesktop, startup folder or somewhere else in the Start Menu. What I've found so far is the function _WinAPI_GetStartupInfo(). The helpfile is just pointing to MSDN without giving any examples... it's returning a "DLLstruct" -- howto retrieve further info from that type of variable? #include <WinAPISys.au3> #include <Debug.au3> $StartupInfo=_WinAPI_GetStartupInfo() $VarType=VarGetType($StartupInfo) if IsArray($StartupInfo) Then _DebugArrayDisplay($StartupInfo,$VarType) Else MsgBox(0,$VarType,"""" & $StartupInfo & """") EndIf Or maybe there is a better, different approach to get what shortcut from a compiled autoit script was started from? Regards, Rudi.
×
×
  • Create New...