Link to home
Start Free TrialLog in
Avatar of HKFuey
HKFueyFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Map network drives on logon

I have a script (in a .vbs file), when run it maps the shared drives for my users: -
Set objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "R:" , "\\files\shared"
objNetwork.MapNetworkDrive "S:" , "\\files\users"

What do I need to configure in AD to automate this?
ASKER CERTIFIED SOLUTION
Avatar of Robin Human
Robin Human
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of HKFuey

ASKER

Thanks!