Why won't my logon scripts map drives under Windows 7?
- by Steven
Why won't my logon scripts map drives under Windows 7?
I'm using a vb script similar to the one below, the script runs using a group policy.
Dim WshNetwork
Set WshNetwork = WScript.CreateObject("WScript.Network")
WshNetwork.MapNetworkDrive "g:", "\\\Saturn\data\"
WshNetwork.MapNetworkDrive "k:", "\\\Saturn\stuff\"
Works fine for Windows XP.
Update: Copying the script locally and running it runs fine so I suspect the Group Policy isn't running the script on Windows 7.
Many thanks
Steve