Jump to content

PerryRaptor

Active Members
  • Posts

    377
  • Joined

  • Last visited

Profile Information

  • Location
    New Mexico

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

PerryRaptor's Achievements

Universalist

Universalist (7/7)

1

Reputation

  1. Does anyone have a complete list of the compiler options we can use in script? #Compiler_Prompt = n #Compiler_AUT2EXE = #Compiler_Icon = #Compiler_Compression = 4 #Compiler_Allow_Decompile = n #Compiler_PassPhrase = #Compiler_UseUpx= n #Compiler_Res_Fileversion = 1.2.0.0 #Compiler_Res_Description = #Compiler_Res_LegalCopyright = #Compiler_Res_Language=1033 #Compiler_Res_Comment = #Compiler_Res_Field1Name = #Compiler_Res_Field1Value = #Compiler_Res_Field2Name = #Compiler_res_Field2Value = #Compiler_Run_AU3Check = n #Compiler_Run_Before = #Compiler_Run_After = move "%out%"
  2. Looking for native AutoIT code for downloading torrent files.
  3. SOLVED I was unaware for this GuiListBox UDF... Thanks a million ____!
  4. I've been trying to command this ListBox control for a number of years without success. I can command 90% of the other controls within the targeted application, but this one eludes me. So I've stopped by the forums in hopes of getting some ideas. According to ResHacker, this is how the control is formatted within the application: CONTROL "", 1058, LISTBOX, LBS_STANDARD | LBS_NOINTEGRALHEIGHT | LBS_MULTICOLUMN | LBS_NODATA | LBS_NOSEL | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 6, 68, 328, 196 The AutoIT Info Tool correctly identifies the Control ID Number, and the ClassNameNN as ListBox2.
  5. Having an issue with version 3.3.0.0 FileCreateShortcut whereas the closing double quote is placed at the end of the line in the Shortcut properties Target. At this moment, I believe the issue has something to do with spaces between words in the path/ folder name(s), for example: "C:\My Parent Folder\Some Child Folder\MyProgram.exe" +part 1 +channel 3 +monitor 1 FileCreateShortcut will not place the double quote following My Program.exe, instead it places after the three arguments. I've seen this issue on Windows XP Pro, Windows XP-64, Vista Business Edition, and Vista Ultimate Edition 64-bit.
  6. I'm new to AutoIT TCP functions...Are there any impacts with being behind a local router? Will I need to create port-forward address in the router?
  7. Here you go... $TimeSet = 10 If @HOUR < $TimeSet Then MsgBox(64, "TEST", "Its not " & $TimeSet & " o'clock yet") IF @HOUR > $TimeSet Then MsgBox(64, "TEST", "Its after " & $TimeSet & " o'clock") IF @HOUR = $TimeSet Then MsgBox(64, "TEST", "Its " & $TimeSet & " o'clock")
  8. Thanks Everyone! This works very efficiently... $list = ProcessList("SvcHost.exe") for $i = 1 to $list[0][0] $pid = $list[$i][1] Local $hProc = DllCall("kernel32.dll", "int", "OpenProcess", "int", 0x0410, "int", False, "int", $pid) If $hProc[0] Then Local $stHMod = DllStructCreate("int hMod") Local $stCB = DllStructCreate("dword cbNeeded") Local $resEnum = DllCall("psapi.dll", "int", "EnumProcessModules", "int", $hProc[0], "ptr", DllStructGetPtr($stHMod), "dword", DllStructGetSize($stHMod), "ptr", DllStructGetPtr($stCB, 1)) If $resEnum[0] Then Local $resPath = DllCall("psapi.dll", "int", "GetModuleFileNameEx", "int", $hProc[0], "int", DllStructGetData($stHMod, 1), "str", "", "dword", 32768) MsgBox(0, "PID 2 Path", "" & $Pid & " = " & $resPath[3]) EndIf $stHMod = 0 $stCB = 0 DllCall("kernel32.dll", 'int', 'CloseHandle', 'int', $hProc[0]) EndIf Next
  9. Can we get the path for a running process? Even {PID # to path} would work. Is there a DLLCall() that could do it? I looked at SysInternal's Handle.exe; however, that's overkill and painful to parse the results for just one line of data.
  10. Sorry to bring up an old subject...I was looking for ideas for automating the process of searching all connected drives using pure AutoIT. @Valuater...Cool App
  11. I've lost a file on a 250 GB hard drive...Now I need AutoIT to search every folder to find it. Got any ideas to automate and repeat this task?
  12. Same here...my AVG just hit on *.bin file and every *.exe I've compiled with AutoIT version 3.2.8.1...
  13. It works! If you make the colored scale bars reflect yellow for low, green for acceptable, and red over limit would be nice.
×
×
  • Create New...