redfive19 Posted August 3, 2005 Posted August 3, 2005 Hello all,I contacted Roboform support yesterday to see if this feature had been implemented yet and to my suprise, it had!So of course I wrote an autoit script to suit my needs. It has an AdLib func because I found in some cases, especially if a browser is open or an explorer window, it prompts for reboot or to proceed with the install. I also have it taking the Roboform taskbar icon out of startup. You may or may not want this, so you can erase it if you like (the two reg entries). This is probably my most used application.Attached is a screenshot of the silent install options. Alternatively, you can view them yourself by running "Airoboform.exe /?"AdlibEnable("popup")ProcessClose("firefox.exe")ProcessClose("iexplore.exe")runwait("AiRoboForm.exe /silent /close")Processwait("robotaskbaricon.exe", 10)ProcessClose("robotaskbaricon.exe")RegWrite("HKEY_CURRENT_USER\Software\Siber Systems\RoboForm", "ShowTaskbarIconOnWidowsStartup", "REG_DWORD", "0") ;stops roboform from starting with windowsRegDelete("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run", "RoboForm");stops roboform from starting with windowsExitfunc popup() If WinExists("RoboForm Installer", "") Then ControlClick("RoboForm Installer", "", "Button1") EndIf If WinExists("RoboForm Setup", "") Then ControlClick("RoboForm Setup", "", "Button2") EndIfEndFunc
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now