Roaming profiles

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

what are the best articles for setting up roaming profiles in 2K ?
have found the basic article on setting them up but does not tell enough
required permission etc and how to do a log script for drive mapping



--
The information contained in this email is privileged and confidential and
intended for the addressee only. If you are not the intended recipient, you
are asked to respect that confidentiality and not disclose, copy or make use
of its contents. If received in error you are asked to destroy this email
and contact the sender immediately. Your assistance is appreciated.
 
Steve said:
what are the best articles for setting up roaming profiles in 2K ?
have found the basic article on setting them up but does not tell enough
required permission etc and how to do a log script for drive mapping

Haven't got round to doing roaming profiles myself yet (dont
know how) but I have a logon.vbs file which maps network
drives for the grunts in the office:


' VBScript.
' Purpose of script to map a network drive
Dim oNet
Set oNet = CreateObject("Wscript.Network")
oNet.MapNetworkDrive "Y:", "\\server1\documents"
oNet.MapNetworkDrive "Z:", "\\server1\database"



HTH



James H
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top