
ChromeFan
Active Members-
Posts
265 -
Joined
-
Last visited
Everything posted by ChromeFan
-
did you search the forum first? Advance seach? there are many ways to do it...
-
RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "Program_Name", "REG_SZ", @AutoItExe) ; @ScriptFullPath
-
AutoIt is already facing many problems with AV companies because of false positive warnings, and if we did not helped people to remove viruses then one day all autoit exe's and scripts will be detected as a virus and no one will trust on autoit files. i really love AutoIt and don't want it to happen.
-
i am totally agreed with you! i think there are many people infected, check this link http://www.ipmart-forum.com/showthread.php...764#post2272764
-
Hi i need get autoit compiler 3.2.4.9
ChromeFan replied to renanzin's topic in AutoIt General Help and Support
http://www.autoitscript.com/forum/index.php?showtopic=73436 after installing you can find the compiler in Start > All Programs > AutoIt V3 > Compile Script to .exe -
you can create Labels with your checkBox and remove the text with CheckBox.
-
are you trying to set hotkey? read the help file for HotKeySet()
-
Please Upload the virus file to www.rapidshare.com and post it's link here. after analyzing Smoke_N will be able to help you because he have helped many people before. also check the properties of file and tell us what was written there.
-
Everything on my computer is renamed to Autoit
ChromeFan replied to SaraTheGreat's topic in AutoIt General Help and Support
you have posted the source in your post #54 in this thread. #584979 -
Everything on my computer is renamed to Autoit
ChromeFan replied to SaraTheGreat's topic in AutoIt General Help and Support
if you did not stop asking it then your account may get banned, suspended or at least you will be warned. any type of discussion about decompiling and cracking is not allowed here. keep it with you... BeCareFull -
Everything on my computer is renamed to Autoit
ChromeFan replied to SaraTheGreat's topic in AutoIt General Help and Support
"ProgAndy" is right. Smoke_N's Remover can't delete file from StartUp Folder because he is trying to delete them without setting their attrib's to normal. i am not going to modify or post his code because he have to fix it himself and help this girl because i don't have any riot to do it. @ Smoke_N please add this to your remover and post it again. FileSetAttrib(@StartUpFolder & "\FileName.exe","-RSH+N) -
Could u help me to complete my script
ChromeFan replied to xuanmai's topic in AutoIt General Help and Support
can you translate it to English??? -
i think it's not possible using AutoIt, but let's see what Dev and expert users want to say...
-
yes, just copy it from Au3Info tool..
-
FileExists wait for drive connect
ChromeFan replied to lxxl's topic in AutoIt General Help and Support
-
use AU3Info.exe to get more info about the message box and find it via the text in it. i will help more and provide code, if you can tell me your purpose behind this?
-
FileExists wait for drive connect
ChromeFan replied to lxxl's topic in AutoIt General Help and Support
it will wait until the path really exists. -
try this... it will work fine! #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> $PW = "test" $T=TimerInit() $Form1_1 = GUICreate("Test InputBox", 217, 109, -1, -1, -1, BitOR($WS_EX_TOPMOST, $WS_EX_WINDOWEDGE)) $Input1 = GUICtrlCreateInput("", 16, 40, 185, 21, BitOR($ES_PASSWORD, $ES_AUTOHSCROLL)) $Label1 = GUICtrlCreateLabel("Please enter the password to proceed.", 16, 16, 186, 17) $Button1 = GUICtrlCreateButton("OK", 16, 72, 83, 25, $BS_DEFPUSHBUTTON) $Button2 = GUICtrlCreateButton("Cancel", 120, 72, 83, 25, 0) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 $Input1Answer = GUICtrlRead($Input1) If $Input1Answer = $PW Then ExitLoop Else MsgBox(262160, "ERROR", "Wrong password! Please try again.") EndIf Case $Button2 Exit EndSwitch If TimerDiff($T) >= 10*1000 then ; time in mili seconds 10x1000 = 10sec GUIDelete($Form1_1) ;the gui which you want to del ExitLoop EndIf WEnd
-
just a example to give you it's idea, $T=TimerInit() If TimerDiff($T) >= 10*1000 then ; time in mili seconds 10x1000 = 10sec GUIDelete($GUI) ;the gui which you want to del ExitLoop EndIf for more information read the help file and do as BrettF said.
-
just giving a example to let you learn. While 1 Send("S") Sleep(10000) Send("W") Sleep(10000) WEnd nobody here will read the help file for you.
-
4 Notepad Windows Beside Each other
ChromeFan replied to Rawox's topic in AutoIt General Help and Support
just a example not working code Run("Notepad.exe") WinMove("Title", "", 0, 0, 100, 500) Sleep(100) Run("Notepad.exe") WinMove("Title", "", 100, 100, 100, 500) Sleep(100) Run("Notepad.exe") WinMove("Title", "", 200, 200, 100, 500) Sleep(100) Run("Notepad.exe") WinMove("Title", "", 300, 300, 100, 500) you can also use winwait() for wating for window to be activated and then move, resize it. -
Get every file extension in the registry
ChromeFan replied to TehWhale's topic in AutoIt General Help and Support
you can log exe file, check this #569707 and by this you can get more ideas on how to add other exts. -
creating Custom User Prompt Like Vista/XP
ChromeFan replied to HiSoftDev's topic in AutoIt General Help and Support
i think this is very difficult, because you may need to get original password of windows which is very difficult. and also how will you know about the images used in user accounts? why don't you try a simple like the following with your own password? Password_Protect() ; Dated: Sep-23-2008 ; WB: ChromeFan Func Password_Protect() $Total_Counts = 3 $Try = 1 $File_Access = "Disallowd" $Your_Password = "ChromeFan" ConsoleWrite("" & @CRLF) $InputBox_1 = InputBox( "Access Protected", "Please Enter your password (Case sensitive)" & @CRLF & @CRLF & "My Program Name (Example)"& @CRLF & @CRLF &"Author: Your Name", "", "*") If $InputBox_1 == $Your_Password Then $File_Access = "Granted" MsgBox(64, "Password Accepted", "Welcome," & @CRLF & @CRLF & @UserName & @CRLF & @CRLF & @ComputerName) Else Do $InputBox_2 = InputBox( "Access Denied", "The Password provided by you is wrong."& @CRLF & @CRLF &"Please Reinter your password."& @CRLF & @CRLF &"Author: Your Name", "", "*") If $Your_Password = $InputBox_2 Then $File_Access = "Granted" MsgBox(64, "Password Accepted", "Welcome," & @CRLF & @CRLF & @UserName & @CRLF & @CRLF & @ComputerName) ExitLoop EndIf $Try += 1 Until $Try = $Total_Counts EndIf If $File_Access = "Allowed" Then MsgBox(48, "Access Granted", "Some Text") Else MsgBox(48, "You can not access this program!", "You have tried more then 3 times to enter the correct password."&@CRLF&"But the password was always wrong."&@CRLF&"Sorry! Program will now close.") Exit Return endif EndFunc ;==>_Password_Protect() -
How Would I Write A Script That ?
ChromeFan replied to Duffy's topic in AutoIt General Help and Support
and why you want to do it? what will be in account.txt file? it seems you are trying to do something malicious.