Jump to content

Search the Community

Showing results for tags 'GRRRRRRRRRRRRRR'.

  • 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've been at this for about two weeks now. I can not for the life of me open an exe! Here is the function that calls the exe: Func scite4au3_model_update_context_menu_entries(Const $this, Const ByRef $context_menu_selections) Local Const $autoit_directory = ' ' & $this.GetAutoItDirectory() & ' ' local const $definition = $this.GetLoadedDefinition() & ' ' Local Const $command = $autoit_directory & $definition & $this.EnableDisableContextMenuItems($context_menu_selections) Switch IsAdmin() Case True RunWait($this.StorageDirectory & "SciTE4AutoIt3\ContextMenuAdmin.exe" & $command, '', @sw_hide) Case False RunWait($this.StorageDirectory & "SciTE4AutoIt3\ContextMenuNonAdmin.exe" & $command, '', @sw_hide) EndSwitch EndFunc Here is the code in the exe: #AutoIt3Wrapper_testing=y #NoTrayIcon #RequireAdmin Run(@ScriptDir & "\ContextMenu.exe " & command(), '', @sw_show) func command() local $command = '' for $argument in $CmdLine $command &= $argument next return $command endfunc I've confirmed that the paths are correct. I can click on the exe and it will execute. Any ideas? Edit: Windows 7 x64. AutoIt Production and Beta. Edit: More Iinfo I know the $this object is good because the script wouldn't run at all. $autoit_directory = C:\Program Files (x86)\AutoIt3\ $definition = BETA $command = C:\Program Files (x86)\AutoIt3\ BETA "Compile" "True" "CompileX86" "True" "CompileX64" "True" "CompileWithOptions" "True" "Edit" "True" "Run" "True" "RunX86" "True" "RunX64" "True" "Tidy" "False" D:\Programming\AutoIt\My Scripts\SciTE4AutoIt3 Customizer\SciTE Customization GUI\SciTE4AutoIt3\ContextMenuNonAdmin.exe C:\Program Files (x86)\AutoIt3\ BETA "Compile" "True" "CompileX86" "True" "CompileX64" "True" "CompileWithOptions" "True" "Edit" "True" "Run" "True" "RunX86" "True" "RunX64" "True" "Tidy" "False"
×
×
  • Create New...