I'm opening directories over network using:
System.Diagnostics.Process.Start(path); // path = UNC network path
But having 2 network paths:
\\This_PC_Does_Not_Exist\dir
\\This_PC_Is_Turned_Off\dir
How come first one takes very fast to verify that the network PC doesn't exist, while 2nd takes around two minutes? If I'm not wrong it's 30 seconds in Windows environment to determine if network path is unreachable.
Why does it take so long in this case and how to speed up the info that PC is off?