• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

setting up logon script

watts3000

Senior member
We run dfs all files referenced through the dfs root on. The problem is with home drives I need a way to tell a client machine to fail over to another server. For example lets say your home folders are at //server/home. If server goes down I want an automatic redirection to lets say //server2/home. I know i can just map to the dfs root and it will fail over automatically, but we've had problems when mapping home drives to the dfs root. For example, the script does not run right when we reference the root. I have 50 percent of my users that the script will run for and 50 perecent that it won't. This is my currect logon script its pretty simple.


Dim objNet, strUserName

Set objNet = CreateObject("Wscript.Network")

strUserName =objNet.UserName

objNet.MapNetworkDrive "H:", "\\servername\share\" & strUserName
WSCript.Quit
 
Back
Top