Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (349 - 351 of 3922)

Ticket Resolution Summary Owner Reporter
#879 Fixed AutoIT installation fails to use 64-bit versions on 64-bit OS Win 2008 Jos rboucher
Description

When I've installed AUTOIT on either real or virtualized version of Windows 2008, the 64-bit versions of the following components are not used. The 64-bit versions are present, but are not run by the AutoIT interface.

C:\Program Files (x86)\AutoIt3\Aut2Exe directory

Au3Info.exe AutoIt3.exe

C:\Program Files (x86)\AutoIt3\Aut2Exe directory

Au2exe.exe AutoITSC.bin

There may be others as I have not tried using AutoITx.

A simple rename using the _64x version of these files in these directories fixes the issue. That is

AutoIt3.exe ==> renamed ==> AutoIt3_x32.exe AutoIt3_x64.exe ==> renamed ==> AutoIt3.exe

Side effects Programs look like they are run and compiled correctly, but bugs appear in APIs involving use of text. RegRead and ControlTreeView are two examples.

Following code in any script will show this problem.

ConsoleWrite("OS Version is " & @OSARCH & @CRLF) ConsoleWrite("AutoIT 64bit Version Running? 1 if so -->" & @AutoItX64 & @CRLF)

; if you add the key first, will fail on 64 bit OS but succeed on 32 bit. Works fine once exx rename is done.

$RegKeyExists = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\StrongName", "") ;default value

Run("c:\windows\system32\compmgmt.msc") $WindowUp = WinWaitActive("Computer Management","", 10) If NOT $WindowUp Then $WindowHandle = WinGetHandle("Computer Management") $treeviewRolesHandle = ControlGetHandle ( "Computer Management", "", "[ID:12785]") ConsoleWrite('Window Handle ' & $WindowHandle & ' Tree view role handle' & $treeviewRolesHandle & @crlf) $answer = ControlFocus("Computer Management", "", 12785) Sleep(1000)

;Works regardless ControlTreeView ("Computer Management", "", $treeviewRolesHandle, "Expand", "#0") ControlTreeView ("Computer Management", "", $treeviewRolesHandle, "Expand", "#0|#0") ControlTreeView ("Computer Management", "", $treeviewRolesHandle, "Expand", "#0|#0|#1")

; Does not work due to use of 32-bit exes. once exe's replaced with 64-bit versions, code works ControlTreeView ("Computer Management", "", $treeviewRolesHandle, "Select", "Computer Management (Local)|System Tools|Device Manager")

#1878 Wont Fix Hard crash on VirtualBox.GuestOSTypes rbhkamal@…
Description

VirtualBox provides a COM interface through VirtualBox.VirtualBox. AutoIt crashes with core dump on Windows 7 (at least) when GuestOSTypes is invoked.

I verified that the crash wasn't from the virtualbox code by testing the same code on python

Here is the code:

$oVBox_VirtualBox = ObjCreate( "VirtualBox.VirtualBox" )
ConsoleWrite( "Version: " & $oVBox_VirtualBox.Version & @CRLF )
ConsoleWrite( "GuestOSTypes: " & $oVBox_VirtualBox.GuestOSTypes & @CRLF )

When running the code in python I get the following output for OSTypes:

3.2.12_OSE
(<COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>, <COMObject <unknown>>)
#1612 Rejected Add a FileDeleteLine function. raythorne2005@…
Description

There is a FileWriteLine and FileReadLine, but not a FileDeleteLine.

The only way I know to delete a line is to use arrays, and frankly, it doesn't work too well with my bot... Can you please make this function in the next beta? Thanks alot!

P.S. FileDeleteLine isn't the same as FileWiriteLine and putting a space, I want to delete the WHOLE line. And you should be able to specify which line to delete, of course.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.