Opened 15 years ago
Closed 15 years ago
#1912 closed Bug (No Bug)
Run() does not work on x64 when compiled as x86
| Reported by: | Owned by: | ||
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.6.1 | Severity: | None |
| Keywords: | Cc: |
Description
This does not work on my 64bit Windows 7 OS.
#Region ; Directives created by AutoIt3Wrapper_GUI
#AutoIt3Wrapper_UseX64=n
#EndRegion ; Directives created by AutoIt3Wrapper_GUI
$s_IP = "Insert your IP address here"
$h_Cmd = Run("nbtstat.exe -a " & $s_IP, "", @SW_HIDE, 2)
This works on my 64bit Windows 7 OS.
#Region ; Directives created by AutoIt3Wrapper_GUI
#AutoIt3Wrapper_UseX64=y
#EndRegion ; Directives created by AutoIt3Wrapper_GUI
$s_IP = "Insert your IP address here"
$h_Cmd = Run("nbtstat.exe -a " & $s_IP, "", @SW_HIDE, 2)
I'm using a 64bit Windows 7 OS and for certain UDF's to work I need to run the application as a 32bit script/executable. However, when doing this the Run() function does not work, which eliminates my ability to troubleshoot the issue effectively.

NoBug ... Use our Forum for support.