XtremeMaC Posted October 24, 2003 Posted October 24, 2003 (edited) Hi thereI just got my self into vbs programming to install some programs that cannot be installed silently or causing some problems when done soI had problems with norton systemworks so here I am trying to write a vbshow to mouse click(double click, right click) at an exact point? (res 1600x1200)how to use ctrl how to use shift how to use windows keyhow to combine shift + any other key?and last is there a way to say at next page or next prompt or something instead of putting timers?and a program to write this, maybe, a program showing the neccessary tags to meI know windows have one but just in case I don't like it:)Thanks Edited October 24, 2003 by XtremeMaC
XtremeMaC Posted October 24, 2003 Author Posted October 24, 2003 okay I got it to workbut my questions still remain on how to etc..here's the vbs script if anyone's interestedit skips clean sweep, systemdoctor, unerase wizard and norton recycle'Automatic, but not silent install of PowerDVD5 and newest patch'Usefull AFTER the mplayerc-scriptSet WshShell = WScript.CreateObject("WScript.Shell")On Error Resume Next'Run setup from location on hdd''you have to check the path !WshShell.Run ("%systemdrive%\install\Apps\systemworks\setup.exe")'if your hdd is slow, increase the next valueWScript.Sleep 17000WshShell.SendKeys "{ENTER}"WScript.Sleep 300WshShell.SendKeys "n"WScript.Sleep 300WshShell.SendKeys "a"WScript.Sleep 300WshShell.SendKeys "n"WScript.Sleep 300WshShell.SendKeys "n"WScript.Sleep 300WshShell.SendKeys "c"WScript.Sleep 300WshShell.SendKeys "n"WScript.Sleep 300WshShell.SendKeys "{DOWN}"WScript.Sleep 300WshShell.SendKeys " "WScript.Sleep 300WshShell.SendKeys "{UP}"WScript.Sleep 300WshShell.SendKeys "{ENTER}"WScript.Sleep 300WshShell.SendKeys "{DOWN 2}"WScript.Sleep 300WshShell.SendKeys "{RIGHT}"WScript.Sleep 300WshShell.SendKeys "{DOWN 3}"WScript.Sleep 300WshShell.SendKeys " "WScript.Sleep 300WshShell.SendKeys "{UP}"WScript.Sleep 300WshShell.SendKeys "{ENTER}"WScript.Sleep 300WshShell.SendKeys "{DOWN}"WScript.Sleep 300WshShell.SendKeys " "WScript.Sleep 300WshShell.SendKeys "{UP}"WScript.Sleep 300WshShell.SendKeys "{ENTER}"WScript.Sleep 300WshShell.SendKeys "{DOWN 2}"WScript.Sleep 300WshShell.SendKeys " "WScript.Sleep 300WshShell.SendKeys "{UP}"WScript.Sleep 300WshShell.SendKeys "{ENTER}"WScript.Sleep 300WshShell.SendKeys "%n"WScript.Sleep 2000WshShell.SendKeys "n"WScript.Sleep 300WScript.Sleep 300000WScript.Sleep 300WshShell.SendKeys "{ENTER}"WScript.Sleep 300WshShell.SendKeys "{ENTER}"WScript.Sleep 300Wscript.QuitBe advised these sleep times are for my too much program installed windows. Your times could change!!
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