Jump to content

AutoProgramming

Active Members
  • Posts

    37
  • Joined

  • Last visited

AutoProgramming's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Btw it's not to hard to crack if you are trying to extract the string from the image because it does just use standard fonts and no distortion, etc
  2. Wtf nice Maybe you can add my Beeping-UDFs to put a beat to it?
  3. Looks nice
  4. Looks very nice, gona test it tomorrow >_
  5. What would a syn-packet look like?
  6. That's actualy where the idea comes from ;D
  7. ;~ scan all drives for autorun.inf #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form=C:\Users\alexander\Documents\AutoIt\projects\AntiVir\Forms\autorun_editor.kxf $Form1 = GUICreate("Autorun.inf Scanner // by AutoProgramming", 635, 444, 193, 125) $Edit1 = GUICtrlCreateEdit("", 8, 40, 617, 393) $CButton = GUICtrlCreateButton("Close", 8, 8, 75, 25, 0) $IButton = GUICtrlCreateButton("Search for autorun.inf", 96, 8, 131, 25, 0) $RCheckbox = GUICtrlCreateCheckbox("Search Removable Drives?", 240, 16, 169, 17) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $IButton GUICtrlSetData($Edit1, "") If GUICtrlRead($RCheckbox) = 1 Then GetAll("removable") EndIf GetAll("fixed") GetAll("cdrom") Case $CButton Exit EndSwitch WEnd GetAll("fixed") GetAll("cdrom") Func GetAll($type) $var = DriveGetDrive($type) If NOT @error Then For $i = 1 to $var[0] $path = $var[$i] & "\autorun.inf" If FileExists($path) Then GUICtrlAddData($Edit1, "--------------------------------------------------" & @CRLF) GUICtrlAddData($Edit1, "Autorun.inf @ " & $path & @CRLF) GUICtrlAddData($Edit1, "--------------------------------------------------" & @CRLF) $autorun = FileRead($path) GUICtrlAddData($Edit1, $autorun) GUICtrlAddData($Edit1, @CRLF & @CRLF) EndIf Next EndIf EndFunc Func GUICtrlAddData($GUIElement, $Data) GUICtrlSetData($GUIElement, GUICtrlRead($GUIElement) & $Data) EndFunc I think it's quite self-explainig -> This tool searches for autorun.inf in all drives and displays its content. Enjoy.
  8. You just need to find the right name for the EXE - for example MicrosoftWord 2007 Portable, Photoshop CS3 Portable or TribalWars Bot should do well...
  9. Wow, looks cool
  10. This, and the _Execute_Source_File() Won't work if the Computer running the Script doesn't have autoIt installed. But it's a nice function anyway ;D
  11. *bump* Yeah, that would be nice... The fileman useracc doesnt work http://www.autoitscript.com/fileman/users/peethebee/
  12. Yeah i read your first post - but i want to compile .au3 files on a computer that doesnt have an autoit installation... So i copy the aut2exe.exe & AutoITSC.bin to the temp dir and then run it via cmd line?
  13. Hm... so there is no possibility of making a standalone .exe compiler?
  14. Is the AutoIt3Wrapper.exe a standalone exe?
×
×
  • Create New...