Jump to content

Yering

Member
  • Posts

    4
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Australia

About Yering

Yering's Achievements

0

Reputation

  1. Hi all, I wrote these to bypass the Vista driver install, file replace, run executable and unsigned driver prompts during my machine unattended installs. These autoit scripts are nothing special but hopefully folks will find them useful. To use these scripts simply execute them in the background before attempting to install any apps / drivers etc. and they will automatically respond to the prompts that they are configured for. while True if Winexists("Windows Security", "Install this driver software anyway") then WinActivate("Windows Security", "Install this driver software anyway") send("!i") EndIf sleep(2000) wEnd while True if Winexists("Open File - Security Warning", "Are you sure you want to run this software?") then WinActivate("Open File - Security Warning", "Are you sure you want to run this software?") send("!r") EndIf sleep(2000) wEnd while True if Winexists("Error", "The existing file is newer than the one Setup is trying to install.") then WinActivate("Error", "The existing file is newer than the one Setup is trying to install.") send("!y") EndIf sleep(2000) wEnd while True if Winexists("Windows Security", "You should only install driver software from publishers you trust.") then WinActivate("Windows Security", "You should only install driver software from publishers you trust.") send("!i") EndIf sleep(2000) wEnd
  2. Hi all, Long time lurker first time contributor (so be gentle please ). Here is my (cheap and nasty) AutoIt script to install Soundblaster Web Updates (drivers and apps). I don't integrate the drivers using Vlite but instead run the installer (using the /s switch, from memory the silent install .iss files are already there) as part of my application installation steps Tested on Vista and a SoundBlaster XFi card. Does not work for Creative MediaSource 5 Player as the window titles are not the same as the other installs. Usage instructions: Download and install autoit3 Create and compile this script Run this script BEFORE the installer (must be non-blocking as this script only finishes when the installer does) Run the xfi driver installer script in unattended mode (using /s) Sit back and enjoy the ride ??? Profit! #cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.12.1 Autoresposes to Sound Blaster Web Update setup prompts #ce ---------------------------------------------------------------------------- while True opt("WinTitleMatchMode", 2) if Winexists(" - InstallShield Wizard", "Choose Setup Language") then WinActivate(" - InstallShield Wizard", "Choose Setup Language") send("!n") EndIf opt("WinTitleMatchMode", 1) if Winexists("Setup", "Click [OK] to continue or [Cancel] to exit installation") then WinActivate("Setup", "Click [OK] to continue or [Cancel] to exit installation") send("{enter}") EndIf if Winexists("Installation Wizard", "Press the PAGE DOWN key to read the entire agreement") then WinActivate("Installation Wizard", "Press the PAGE DOWN key to read the entire agreement") send("{enter}") EndIf if Winexists("Installation Wizard", "Please read through the contents of the readme file shown below") then WinActivate("Installation Wizard", "Please read through the contents of the readme file shown below") send("{enter}") EndIf if Winexists("Question", "Setup has found the same version of ") then WinActivate("Question", "Setup has found the same version of ") send("!y") EndIf if Winexists("Setup", "Setup has found a newer version of ") then WinActivate("Setup", "Setup has found a newer version of ") send("{enter}") EndIf if Winexists("Installation Wizard", "Setup will install the software in the folder shown below") then WinActivate("Installation Wizard", "Setup will install the software in the folder shown below") send("{enter}") EndIf if Winexists("Installation Wizard", "Setup has enough information to start copying the program files") then WinActivate("Installation Wizard", "Setup has enough information to start copying the program files") send("{enter}") EndIf if Winexists("Installation Wizard", "Your computer system has to be restarted for the changes to take effect") then WinActivate("Installation Wizard", "Your computer system has to be restarted for the changes to take effect") send("{down}{enter}") exitloop EndIf if Winexists("Installation Wizard", "Setup has finished installing ") then WinActivate("Installation Wizard", "Setup has finished installing ") send("{enter}") exitloop EndIf if Winexists("Error", "Please reboot and try again") then WinActivate("Error", "Please reboot and try again") send("{enter}") exitloop EndIf sleep(2000) wEnd Edit - added some more details about usage
  3. Love your work - this is a great application! But now for my feedback... I just downloaded build 1275 and am running it under vista home premium 64 bit, and it: 1) downloads patches that I already have installed on the machine 2) re downloads downloads patches that windows update downloader itself has already downloaded (installed or not). It would be great if you could fix these if / when you get a chance...
×
×
  • Create New...