Hi,
I am trying to write a script which will help map a users network drive
on logon. It requires me to separate the username into 3 parts.
For example:-
if the username is abc123
The network drive address would be \\serveraddress\users\a\b\abc123
I am using vbs to write this script and have gotten this far -
Run "net use u: \\serveraddress\users\" & oNetwork.UserName & "
/persistent:no"
Does anyone know how I can get about doing this? Thanks.
Dikshant