Jump to content

Recommended Posts

Posted

hi,

i want to create a virus Removal solution for my friend's pc. i know we can use antiviruses,etc

but i want to do it using AutoIt script to get experience of AutoIt and Removing viruses.

i have created the Script for removing virus and it really works but now i want to create a GUI for it and post on forums to help them remove the worm.

now, can you please tell me how to show the Targets where script is searching for worm?

like in this image

Posted Image Thanks

Unresolved topics:1- Please help me in Editing or replacing a page in FireFox and IE.Please have a look at them.
Posted

i think this example may help u!

$hGui = GuiCreate("Test GUI", 300, 180)

$hLabel = GUICtrlCreateLabel("", 50, 10, 200, 16)
GUICtrlSetBkColor(-1, 0xC0C0C0)

$hInput = GUICtrlCreateInput("", 50, 50, 200, 16)
GUISetState()
While 1
   $Msg = GUIGetMsg()
   If $Msg = -3 Then Exit
 ;; Check the contents before making changes to the label to avoid flickering
   If GUICtrlRead($hInput) <> GUICtrlRead($hLabel) Then GUICtrlSetData($hLabel, GUICtrlRead($hInput))
Wend

4m848p10.gif 

Posted (edited)

@SoftVoile

Can you explain more what you want ?

ShellExecute("explorer.exe","D:\Adobe Studio\Bonus\Macromedia Extension Manager 1.4")

While 1
$CHECKFILE=FileFindFirstFile("D:\Adobe Studio\Bonus\Macromedia Extension Manager 1.4\*.*")
$FILE=FileFindNextFile($CHECKFILE)
MsgBox(64,"Files found","File : "&$FILE)
WEnd
Edited by FireFox
Posted

@SoftVoile

Just add the necessary string in the listview for the each action/command.

Example:

We have several functions e.g. MemoryScan; StartupScan and etc. Before calling of these functions add a string, which present the function purpose. :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...