Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Vista driver install, file replace, run executable and unsigned driver

Featured Replies

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 :rolleyes: 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

Edited by Yering

  • 1 month later...
  • 1 year later...

I love the idea of this, but I am at a loss where to run it in my vista unattended setup. I am installing my drivers during stage 5, so I'm not sure when I should call this script.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.