Win 10: Disable "Restoring Network Connections" popup when connection to network drives drop

error message pic

Whenever I get disconnected from my network drives and I happen to have like 10 folders of the network drive folders opened, 10 of these pop-ups will show up and I cannot close any of the windows unless I manually click on OK on every popup. Could I disable this error message somehow?

2

2 Answers

I found a guide that I sadly cannot follow without admin rights.

But in short:

  • Open the Registry Editor
  • Navigate to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\NetworkProvider
  • Create a "DWORD Value" called RestoreConnection and set the value to 0 (or change value if it already exists)
2

Happens to me all the time.

I use AutoHotkey quite often, so I wrote this script and run it every time these messages pop up.

wintitle:="Restoring Network Connections"
Loop { if (WinExist(wintitle)) { WinActivate, %wintitle% WinWaitActive, %wintitle%,,3 Send, {Return} Sleep, 200 } else { ExitApp, 0 Return }
}

It cycles through these windows and presses Enter on each to close them.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like