Jump to content

Spyder25000

Members
  • Posts

    17
  • Joined

  • Last visited

Spyder25000's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. CODE#include <GuiConstants.au3> ; GUI $passwd = InputBox("Security Check", "Enter your password.", "", "*") if $passwd "qwerty" Then MsgBox ("Greatings") Else Exit GuiCreate("Wireless Policy Deleter", 225, 50) $Button_1 = GUICtrlCreateButton ("Delete the Wireless Policy", 0, 0, 225) $password = "qwerty" ; MENU GuiCtrlCreateMenu("File") GUISetState () Do $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Button_1 RegDelete ("HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Wireless") ; Delte Reg EndSelect ; GUI MESSAGE LOOP GuiSetState() Until GuiGetMsg() = $GUI_EVENT_CLOSE Okay how do you make a password The password is supposed to be "qwerty" if you get it right it will go to the GUI and if you get it wrong it will close down
  2. Can some please post code that will show a GUI and a lable and browse button which will make you brose for the file and another button which starts the file and the label shows path Thanks
  3. fileopen? i said FileOpenDialog and WTF is return vaule?
  4. Okay i want a label to show it is that path and i want it to be a var so i can make new button that starts it Now i want to add a file to this it is a cracked client for the game how do i add it and make it copy over it
  5. I made a GUI (DUH!) And it requires users to find to programs, how do i do this? the gui shows the adress bar with browe button next to it (2 of them) -also how do i resrict it to only open that type of exe? -program is desgined to open Silkroad.exe and nubot.exe So for exentsion it is Silkroad.exe ty Oh i havent started the codeing and i am new to GUI's so how can i keep it from closing?
  6. I want it to list them (passwords)
  7. okay i have made a GUI to which i give to my school mates I want it to write into a .ini or a .log file becuase it makes a password change for the ADMIN (oh oh TROBLE FOR ME) But i want it to LIST what they have chnaged it to here is my code which i work in my class time #include <GuiConstants.au3> ; GUI GuiCreate("Nick's Tools", 265, 300) GuiSetIcon("Nick's Tools.exe") AutoItSetOption ("GUICloseOnESC", 0) $Button_1 = GUICtrlCreateButton ("Delete the Wireless Policy", 0, 0, 260) $Button_3 = GUICtrlCreateButton ("Change Admin password to original", 0, 145, 260) $Button_4 = GUICtrlCreateButton ("Shutdown", 10, 225, 240, 50) GUICtrlCreateLabel ("Change the Admin's password to what you put in box", 0, 80) $var = GUICtrlCreateInput ("", 0, 95) $Button_2 = GUICtrlCreateButton ("Change Admin password", 0, 120, 260) $helpmenu = GUICtrlCreateMenu ("File") $infoitem = GUICtrlCreateMenuitem ("About",$helpmenu) $Button_5 = GUICtrlCreateButton ("Close uneeded processes", 0, 25, 260) GUICtrlCreateLabel ("Version 1.7 BETA", 100, 200) ;GUICtrlRead($var) GUISetState () Do $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Button_1 RegDelete ("HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Wireless") ; Delte Reg ToolTip ("Restarting Computer Please Save All Work", 10, 10) Sleep (7500) Shutdown (6) Case $msg = $Button_2 Run ("cmd.exe") ; Cmd open Sleep (10) Send ("Net User Administrator *{ENTER}") Sleep (15) Send ($var) SLeep (12) Send ("{ENTER}") Sleep (12) Send ($var) Sleep (12) Send ("{ENTER}") Sleep (12) Send ("exit{Enter}") Sleep (1500) MsgBox ( 64, "", "Administrator's Password is "& GUICtrlRead($var)) IniWrite ("C:\WINDOWS\password.log", "Password", "Password", "" & GUICtrlRead($var)) Case $msg = $Button_3 Run ("cmd.exe") ; Cmd open Sleep (15) Send ("Net User Administrator *{ENTER}") Sleep (12) Send ("deltakilo{Enter}") Sleep (12) Send ("deltakilo{Enter}") Sleep (12) Send ("exit{Enter}") sleep (700) MsgBox ( 64, "Password set", "Password is now Normal, deltakilo") Case $msg = $Button_4 Shutdown (5) Case $msg = $infoitem MsgBox (0, "About", "Made By X") Case $msg = $Button_5 ProcessClose ("hpcmpmgr.exe") ProcessClose ("hpqgalry.exe") ProcessClose ("atiptaxx.exe") ProcessClose ("Itmoh.exe") ProcessClose ("qttask.exe") ProcessClose ("Apoint.exe") ProcessClose ("ntvmd.exe") EndSelect ; GUI MESSAGE LOOP GuiSetState() Until GuiGetMsg() = $GUI_EVENT_CLOSE
  8. 1)i have made a cool GUI for my school it chnages admins password by cmd. I made a ini which records the password but i noticed it overwirtes last one :S how do i make it so that my password wont get overwritn in the ini file 2) I want to make a gui with a button that will show on the GUi how many time you clicked it
  9. Okay i want to make a button on my GUI which will write it and show it on the GUI not as a msgbox how do i set a picture as backround the picture is in sytem32 of the computers
  10. 2) solved i got new 1's 3) how do i write stuff to a file? (.ini or .txt) i want it to show what they have been changing the password to the var for it is var1 4)
  11. Never mind i solved it. New porblem's 1) how do i set a picture which is in windir on every Windows computer as my GUI's backround 2) how do i close PROCESS (have look in taskmanger) I am noob, i am new to AUTOIT used to use AUT0H0TKEY and i though that was awsome and i was botting for a game and saw it was made with Auto it and i downloaded it and said WOW this is 10x better Keep up good work
  12. Thanks but how do i send down the Var for the password? Case $msg = $Button_2 Run ("cmd.exe") ; Cmd open Sleep (10) Send ("Net User Administrator *{ENTER}") Sleep (10) Send ("send down Var") Sleep (10) Send ("send down Var") MsgBox ( 64, "", "Administrator's Password is "& GUICtrlRead($var)) i want the var to send down where it says send down Var thanks
  13. while i am here how do i loop a MsgBox for ever
  14. okay how do i make a GUI with a inut box not popup! that will send what they have writen eg here is my code: i ; AutoIt 3.0.103 example ; 17 Jan 2005 - CyberSlug ; This script shows manual positioning of all controls; ; there are much better methods of positioning... #include <GuiConstants.au3> ; GUI GuiCreate("Win Utilitys", 325, 400) GuiSetIcon("WinUtilitys.exe") $Button_1 = GUICtrlCreateButton ("Delete the Wireless Policy", 0, 0, 225) $Button_3 = GUICtrlCreateButton ("Change Admin password to original", 0, 30, 225) $Button_2 = GUICtrlCreateButton ("Change Admin password", 0, 120, 225) $var = GUICtrlCreateInput ("", 0, 90, 225) GUICtrlCreateLabel ("Change the Admin's password to what you put in box", 0, 70) GUICtrlRead($var) ; MENU GuiCtrlCreateMenu("File") GUISetState () While 1 $msg = GUIGetMsg() Select Case $msg = $GUI_EVENT_CLOSE ExitLoop Case $msg = $Button_1 RegDelete ("HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Wireless") ; Delte Reg Case $msg = $Button_2 Run ("cmd.exe") ; Cmd open Sleep (1000) Send ("Net User Administrator *{ENTER}") MsgBox ( 64, "", "Administrator's Password is ,$var") Case $msg = $Button_3 Run ("cmd.exe") ; Cmd open Sleep (1000) Send ("Net User Administrator *{ENTER}") Sleep (500) Send ("deltakilo{Enter}") Sleep (500) Send ("deltakilo{Enter}") MsgBox ( 64, "Password set", "Password is now Normal, deltakilo") EndSelect Wend ; GUI MESSAGE LOOP GuiSetState() While GuiGetMsg() <> $GUI_EVENT_CLOSE WEnd if you see it will delte a policy that on my school laptop will enable me 2 make a wireless network and the 2nd option will make the admin password Deltakilo and the 3 rd option has a input box which i want to send what they have put in the input area into the cmd after it writes in "net user Administrator *
×
×
  • Create New...