Well I need your expertise again.

I need to know how to create a logon script for Windows 2003 Server. I searched online for awhile and found an example of how to map a drive in logon. However, I am wondering how to:

1. - Modify users environment variables (is there a way I can give each user their personal desktops through a logon script.

2. - Map multiple drives.

Here is the example of mapping a drive through a logon script:

Dim objNet

Set objNet = CreateObject("Wscript.Network")

objNet.MapNetworkDrive "F:", "\\servername\drive"
WSCript.Quit
' End of Script
Please help I will be searching the net but I would like first hand info.

- MilitantEidolon