
curiousmaniac
Members-
Posts
19 -
Joined
-
Last visited
About curiousmaniac
- Birthday 08/22/1988
Profile Information
-
Interests
AntiROOTkit
curiousmaniac's Achievements

Seeker (1/7)
0
Reputation
-
How to fixed any window size?
curiousmaniac replied to curiousmaniac's topic in AutoIt General Help and Support
I'll try it later.. thanks for the reply.. now not polite to ask more question to you, ~ searching in the forum for get win title from process name.. thanks a lot martin.. -
How to fixed any window size?
curiousmaniac replied to curiousmaniac's topic in AutoIt General Help and Support
Thanks Martin, can u show me what function must be used.. maybe some script example.. -
Can anyone help me with a script that will fixed the window to a specific size so the user and the app itself can't re-size it? Example. Im using MPC to play video, i make it become small and put it on the bottom right corner of my desktop, but when the next video played, the window size re-size it self and become big again.. then I need to re-size it again, and so on for the next video.. does anyone have some autoit script solution?
-
typing error or it just me...? hurm mantinance = maintenance
-
thanks for consider it btw..
-
I have this program created using autoit by mikicun, call Reg Tweaker 1.5 . Try check system user login feature... this file totally safe.. Your program are more advanced but this feature its cool to be added too.. RegTweaker v1.5.exe
-
If you can make more like this (interface, features)..its will be better than ever..its free by the way, but not open source like you .. http://www.rizonetech.com/ ScreenShot
-
wope...nice freeze, nice than productive lock but CodyBarrett what is the password to unlock other than Shift+Esc? there a password box right..for 4 characters..i know everyone knew the password but in new in autoit....please..
-
Change Windows 7 Logon screen wallpaper
curiousmaniac replied to Triblade's topic in AutoIt Example Scripts
im using se7en (32) now...but se7en logon changer has been build and published but not in autoit.. Hurm, you doesnt meant it for 32 bit? -
can you make explorer for windows seven transparent and but border, icon and text still solid? I really want to see it..
-
..HI!.me again, huh .hey did anyone ever used to infected by this irc trojan that will "superhidden" any word document on your drive.i did..and it really annoying..can someone share some script that can make all the word document in the drive not superhidden and not read-only?.hint maybe = Read-Only - R System - S Hidden - H
-
Thanks Alladdin, about what you say is right..sometimes user must plug out and in again the removable disk...i'll try till it work..anyone have any idea to remove the delay?
-
Hello, this my code for my simple antivirus, hope its not quiet dizzy because i am only newbie in this write code stuff, ok2. this script do fast delete when detecting autorun.inf in removable disk. but when you click at tray menu..example like i click "About" tray menu..its wait for 1 minutes or more for display it..all same goes on with other menu..have any idea for remove the delay? #include <file.au3> #include <Misc.au3> #RequireAdmin Opt("WinTitleMatchMode", 4) Opt("TrayMenuMode", 1) If _Singleton(@scriptname,1) = 0 Then MsgBox(64, "Same Process Detection", "Realtime Detection - was already running ", 5) Exit EndIf TraySetToolTip("Realtime Detection v1.0") TraySetState() $FIXREGISTRY = TrayCreateItem("Clean Registry") $STARTUP = TrayCreateMenu("Startup") $ADDSTARTUP = TrayCreateItem("Run Realtime Detection when system startup", $STARTUP) $REMOVESTARTUP = TrayCreateItem("Remove Realtime Detection from system startup", $STARTUP) TrayCreateItem("") $ABOUTITEM = TrayCreateItem("About") TrayCreateItem("") $EXITITEM = TrayCreateItem("Exit") If FileExists("C:\Realtime Detection\Realtime Detection.exe") = False Then TrayTip("Realtime Detection v1.0", "Right click for menu.", 5, 1) EndIf $NOTRAYITEMSDISPLAY = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoTrayContextMenu") If $NOTRAYITEMSDISPLAY = "1" Then RegDelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoTrayItemsDisplay") RegDelete("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoTrayItemsDisplay") ProcessClose("explorer.exe") If ProcessExists("explorer.exe") = False Then Run("explorer.exe") EndIf EndIf $NOTRAYCONTEXTMENU = RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoTrayContextMenu") If $NOTRAYCONTEXTMENU = "1" Then RegDelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoTrayContextMenu") RegDelete("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer", "NoTrayContextMenu") ProcessClose("explorer.exe") If ProcessExists("explorer.exe") = False Then Run("explorer.exe") EndIf EndIf While 1 $MSG = GUIGetMsg() If $MSG = -3 Then Exit $REM = DriveGetDrive("REMOVABLE") If Not @error Then For $IREM = 1 To $REM[0] $REMDRIVE = $REM[$IREM] If $REMDRIVE <> "A:" And DriveGetFileSystem($REMDRIVE) <> "" Then If FileExists($REM[$IREM] & "\autorun.inf") Then $REMOPEN = IniRead($REMDRIVE & "\autorun.inf", "autorun", "open", "None") $REMSHELL = IniRead($REMDRIVE & "\autorun.inf", "autorun", "shellexecute", "None") If Not @error Then $SPLITREMSHELL = StringSplit($REMSHELL, " ") $SPLITREMOPEN = StringSplit($REMOPEN, " ") For $IREMOPEN = 1 To $SPLITREMOPEN[0] If $REMOPEN = "None" Then Sleep(1000) Else FileSetAttrib($REMDRIVE & "\" & $SPLITREMOPEN[$IREMOPEN], "-RASH") FileDelete($REMDRIVE & "\" & $SPLITREMOPEN[$IREMOPEN]) FileSetAttrib($REMDRIVE & "\autorun.inf", "-RASH") FileDelete($REMDRIVE & "\autorun.inf") TrayTip("Malware detected!", "Malware " & $REMOPEN & " hase been kick away from your " & $REMDRIVE & " drive. You can relax now.", 5, 1) _FILEWRITELOG(@ScriptDir & "\RealtimeDetection.log", "[Malware] " & $REMSHELL & " was removed from " & $REMDRIVE & @CRLF) ProcessClose($SPLITREMOPEN[$IREMOPEN]) EndIf Next For $IREMSHELL = 1 To $SPLITREMSHELL[0] If $REMSHELL = "None" Then Sleep(1000) Else FileSetAttrib($REMDRIVE & "\" & $SPLITREMSHELL[$IREMSHELL], "-RASH") FileDelete($REMDRIVE & "\" & $SPLITREMSHELL[$IREMSHELL]) FileSetAttrib($REMDRIVE & "\autorun.inf", "-RASH") FileDelete($REMDRIVE & "\autorun.inf") TrayTip("Malware detected!", "Malware " & $REMOPEN & " hase been kick away from your " & $REMDRIVE & " drive. You can relax now.", 5, 1) _FILEWRITELOG(@ScriptDir & "\RealtimeDetection.log", "[Malware] " & $REMSHELL & " was removed from " & $REMDRIVE & @CRLF) ProcessClose($SPLITREMSHELL[$IREMSHELL]) EndIf Next EndIf EndIf EndIf Next EndIf $FIX = DriveGetDrive("FIXED") If Not @error Then For $F = 1 To $FIX[0] $FIXDRIVE = $FIX[$F] If $FIXDRIVE <> "A:" And DriveGetFileSystem($FIXDRIVE) <> "" Then If FileExists($FIX[$F] & "\autorun.inf") Then $FIXOPEN = IniRead($FIXDRIVE & "\autorun.inf", "autorun", "open", "None") $FIXSHELL = IniRead($FIXDRIVE & "\autorun.inf", "autorun", "shellexecute", "None") $SPLITFIXOPEN = StringSplit($FIXOPEN, " ") $SPLITFIXSHELL = StringSplit($FIXSHELL, " ") For $FOPEN = 1 To $SPLITFIXOPEN[0] $INSPLITOPEN = $SPLITFIXOPEN[$FOPEN] If $FIXOPEN = "None" Then Sleep(1000) Else ProcessClose($SPLITFIXOPEN[$FOPEN]) FileSetAttrib($FIXDRIVE & "\" & $SPLITFIXOPEN[$FOPEN], "-RASH") FileDelete($FIXDRIVE & "\" & $SPLITFIXOPEN[$FOPEN]) FileSetAttrib($FIXDRIVE & "\autorun.inf", "-RASH") FileDelete($FIXDRIVE & "\autorun.inf") EndIf Next For $FSHELL = 1 To $SPLITFIXSHELL[0] $INSPLITSHELL = $SPLITFIXSHELL[$FSHELL] If $FIXSHELL = "None" Then Sleep(1000) Else ProcessClose($SPLITFIXSHELL[$FSHELL]) FileSetAttrib($FIXDRIVE & "\" & $SPLITFIXSHELL[$FSHELL], "-RASH") FileDelete($FIXDRIVE & "\" & $SPLITFIXSHELL[$FSHELL]) FileSetAttrib($FIXDRIVE & "\autorun.inf", "-RASH") FileDelete($FIXDRIVE & "\autorun.inf") EndIf Next EndIf EndIf Next EndIf $MSG = TrayGetMsg() Select Case $MSG = $FIXREGISTRY $HCUEXPLORER = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" $HLMEXPLORER = "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" $HCUSYSTEM = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System" $HCUADVANCED = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" $HLMWINLOGON = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" $HCUMAIN = "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" RegDelete($HCUEXPLORER, "NoFolderOptions") RegDelete($HLMEXPLORER, "NoFolderOptions") RegDelete($HCUEXPLORER, "NoViewContextMenu") RegDelete($HLMEXPLORER, "NoViewContextMenu") RegDelete($HLMEXPLORER, "NoStartMenuMorePrograms") RegDelete($HCUEXPLORER, "NoStartMenuMorePrograms") RegDelete($HCUEXPLORER, "HideClock") RegDelete($HLMEXPLORER, "HideClock") RegDelete($HCUEXPLORER, "NoDesktop") RegDelete($HLMEXPLORER, "NoDesktop") RegDelete($HCUEXPLORER, "NoRun") RegDelete($HLMEXPLORER, "NoRun") RegDelete($HCUEXPLORER, "NoControlPanel") RegDelete($HLMEXPLORER, "NoControlPanel") RegDelete($HCUEXPLORER, "NoSMMyDocs") RegDelete($HLMEXPLORER, "NoSMMyDocs") RegDelete($HCUEXPLORER, "NoRecentDocsMenu") RegDelete($HLMEXPLORER, "NoRecentDocsMenu") RegDelete($HCUEXPLORER, "NoSMMyPictures") RegDelete($HLMEXPLORER, "NoSMMyPictures") RegDelete($HCUEXPLORER, "NoStartMenuMyMusic") RegDelete($HLMEXPLORER, "NoStartMenuMyMusic") RegDelete($HLMEXPLORER, "NoStartMenuNetworkPlaces") RegDelete($HCUEXPLORER, "NoStartMenuNetworkPlaces") RegDelete($HCUSYSTEM, "DisableRegistryTools") RegDelete($HCUSYSTEM, "DisableCMD") RegDelete($HCUSYSTEM, "Disabletaskmgr") RegDelete($HCUADVANCED, "HideFileExt") RegDelete($HCUMAIN, "Window Title") RegDelete($HCUEXPLORER, "NoFind") RegDelete($HLMEXPLORER, "NoFind") RegDelete($HCUEXPLORER, "NoWinKey") RegDelete($HLMEXPLORER, "NoWinKey") RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL", "CheckedValue", "REG_DWORD", "1") RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL", "DefaultValue", "REG_DWORD", "2") RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN", "CheckedValue", "REG_DWORD", "2") RegWrite("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\NOHIDDEN", "DefaultValue", "REG_DWORD", "2") ProcessClose("explorer.exe") If ProcessExists("explorer.exe") = False Then Run("explorer.exe") EndIf MsgBox(64, "Realtime Detection v1.0", "Registry has been fixed") Case $MSG = $ADDSTARTUP FileCopy(@ScriptFullPath, "C:\Realtime Detection\Realtime Detection.exe", "9") RegWrite("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run", "Realtime Detection", "REG_SZ", "C:\Realtime Detection\Realtime Detection.exe") MsgBox("64", "Realtime Detection v1.0", "Thanks for adding me.") Case $MSG = $REMOVESTARTUP FileDelete("C:\Realtime Detection\Realtime Detection.exe") RegDelete("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run", "Realtime Detection") MsgBox("64", "Realtime Detection v1.0", "You remove me..:-|.") Case $MSG = $ABOUTITEM ABOUT() Case $MSG = $EXITITEM ExitLoop EndSelect WEnd Func ABOUT() MsgBox("64", "Realtime Detection v1.0", "Is This OK?.") EndFunc Mr.Fix.au3
-
Combine 2 File in 1 Files
curiousmaniac replied to curiousmaniac's topic in AutoIt General Help and Support
i'll try..thanks -
Little Help Here.. Can somebody help me complete my tool. recently i create some program to fix pc from virus disaster.. i created mr.fix.exe(using autoit) combine with nircmd.exe (www.nirsoft.net) i almost complete my tool but something bother me..when executing my autoit script, i must put nircmd.exe into the same directory to get it to work. can somebody help me to COMBINE mr.fix.exe and nircmd.exe into ONE file, did you get me? [mrfix.exe + nircmd.exe = mr.fixitall.exe] so mr.fixitall.exe have both files.Then when i execute mr.fixitall it will run mr.fix.exe, anyone have any idea to do it?sorry for asking if this operation so simple.-- i am new here :-( here some example to help you all to understand. mr.fix.exe command Run ("nircmd.exe killprocess C:\WINDOWS\system32\iamvirus.exe") Run ("nircmd.exe sysrefresh") nircmd My tool is combine with nircmd.exe because there some process i couldnt kill using ProcessClose("") command. By the way. nircmd.exe have nice features that someone who amature like me could understand it. I could combine nircmd.exe with just command prompt but since i know about autoit. i couldnt resist to use it.:-) -------------- I really want to combine it into one file because i really want to make it portable.-----------------