SOOPAFLY Posted September 14, 2003 Author Posted September 14, 2003 during the unattended stage i copy a vbs script that i'll show you in a minute to systemroot than in the registry tweaks i add the following key let's call it qlaunch[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]"qlaunch"="%systemroot%\qlaunch.vbs"this script will delete itself and the registry entery after executionset WshShell = WScript.CreateObject("WScript.Shell")WshShell.Run "control.exe"Wscript.Sleep 5000WshShell.AppActivate "Control Panel"Wscript.Sleep 1000WshShell.SendKeys "^{TAB}"Wscript.Sleep 600WshShell.SendKeys "^{TAB}"Wscript.Sleep 600WshShell.SendKeys "{ENTER}"Wscript.Sleep 2000WshShell.SendKeys "t"Wscript.Sleep 600WshShell.SendKeys "t"Wscript.Sleep 600WshShell.SendKeys "{ENTER}"Wscript.Sleep 2500WshShell.AppActivate "Taskbar and Start Menu Properties"Wscript.Sleep 1000WshShell.SendKeys "%q"Wscript.Sleep 600WshShell.SendKeys "{ENTER}"Wscript.Sleep 5000WshShell.AppActivate "Control Panel"Wscript.Sleep 1000WshShell.SendKeys "{TAB}"Wscript.Sleep 600WshShell.SendKeys "{TAB}"Wscript.Sleep 600WshShell.SendKeys "{TAB}"Wscript.Sleep 600WshShell.SendKeys "{ENTER}"Wscript.Sleep 2500WshShell.SendKeys "%{F4}"Wscript.Sleep 1000WshShell.RegDelete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\qlaunch"dim filesys, demofileset filesys = CreateObject ("Scripting.FileSystemObject")set demofile = filesys.CreateTextFile ("%systemroot%\qlaunch.vbs", true)set demofile = filesys.GetFile("%systemroot%\qlaunch.vbs")demofile.Delete
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now