Modify ↓
Opened 16 years ago
Closed 16 years ago
#801 closed Bug (No Bug)
Run/RunWait path bug
Reported by: | txj2000@… | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.2.12.1 | Severity: | None |
Keywords: | Run RunWait | Cc: |
Description
if path contains ( ), Run/RunWait run error.
example code like this
$nRetCode = Run(@ComSpec & " /k " & @ScriptDir & "\()\MyBatch.bat") $nRetCode = Run(@ComSpec & " /k " & '"' & @ScriptDir & "\()\MyBatch.bat" & '"') $nRetCode = RunWait(@ComSpec & " /k " & @ScriptDir & "\(AnyPath)\MyBatch.bat") $nRetCode = RunWait(@ComSpec & " /k " & '"' & @ScriptDir & "\(AnyPath)\MyBatch.bat" & '"')
the above 4 statements will run error. this bug exists in AutoIT 3.2.12.1, maybe exists in AutoIT 3.3.0.0
Attachments (0)
Change History (1)
comment:1 Changed 16 years ago by Valik
- Resolution set to No Bug
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
No, this is a quirk of cmd.exe. From cmd.exe /?:
Why you think this is an AutoIt error when it's clearly from cmd.exe is beyond me.
No bug.