That's a tough one. I don't think you're going to get what you really want either :(
I first thought about a bat file they could click on with this in it.
net use y: \\servername\home\%usernam
BUT it would try and map the folder with the current username which is generic.
You may be able to possibly write a vb script that will do the same thing except have an input box for them to type in the Shared Folder Name they wish to map to.
Here is an example.
sNewName = "" 'declare a string to hold computername in
'loop while sNewName is null
Do
sNewName = InputBox("Enter Laptop BarCode","BarCode")
loop While (sNewName="")
'do until the length is less than 6 prepending 0's to the barcode
do while (len(sNewName)<6)
sNewName = "0" & sNewName
loop
sNewName = "Laptop-" & sNewName 'build the computername
Main Topics
Browse All Topics





by: superfooz74Posted on 2007-11-29 at 10:54:00ID: 20376181
I don't think there is a way to do that, unless there is a 3rd party program out there for it.