Jump to content

Search the Community

Showing results for tags 'braces'.

  • 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. I am reading a text file and getting the functions from it.Previously the functions are in vbscript code with "Function name" and "End Function" as start and end points.And I parsed the same by setting the start and end points like below. The code in the text will be like this previously Function GetEnvironmentVariable(sType, sName) Log "Reading " & sType & " environment variable " & sName Dim oEnvVar On Error Resume Next SET oEnvVar = oShell.Environment(sType) Log "Environment variable value: " & oEnvVar(sName) GetEnvironmentVariable = oEnvVar(sName) SET oEnvVar = NOTHING End FunctionNow I need to read powershell code and the code format is as below. Function MsgBox($sMsg) { $a = new-object -comobject wscript.shell $b = $a.popup($sMsg,0,"",1) } Can anyone suggest me if the file is having somany functions and I need to read the particular function when the user requests it in my auotoit code.
×
×
  • Create New...