996 Posted October 14, 2003 Posted October 14, 2003 is it possible to install the google toolbar silently?what are the switches?
Thanatos Posted October 14, 2003 Posted October 14, 2003 I haven't found a way, so I wrote a VBS script 'Automatic, but not silent install of Google ToolbarSet WshShell = WScript.CreateObject("WScript.Shell")Set fso = CreateObject("Scripting.FileSystemObject")On Error Resume NextWshShell.Popup "Do NOT MOVE the mouse an do NOT PRESS any button!",5," - Warning - ",48'Run setup from location on hdd''you have to check the path !WshShell.Run ("%systemdrive%\install\Applications\google\google.exe")'if your hdd is very slow, increase the next valueWScript.Sleep 2000'don't use "{n 5}" instead of five times "n" !WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{ENTER}" WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{DOWN}"WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{ENTER}" WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{DOWN}"WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{ENTER}" WScript.Sleep 1000
996 Posted October 14, 2003 Author Posted October 14, 2003 wow, very impressive. i am slowly getting into these vbs scripts.however it doesn't work for me... does it need to be in the setup environment in order to work? it start the setup just fine but the keys down't work...???
dbradtbe Posted October 14, 2003 Posted October 14, 2003 I have the googletoolbarinstaller.exe and it installs silently with just a /q after it?.David
996 Posted October 15, 2003 Author Posted October 15, 2003 oh yeah! it does work... I wonder why this isn't documented on their website...
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