Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

User Network Drives

Status
Not open for further replies.

BudT

IS-IT--Management
Nov 14, 2000
87
US
Each of our users has a network folder in our Users directory to store data so we can back them up each night. As opposed to backing up each individual desktop. Is there a way in a Citrix session to have each user have access automatically to their folder? i.e mounting their U:\\ProServer\Users\username drive for each Citrix session.
 
How do you do it on the desktop side? I'd suggest taking each user's folder and creating a share out of it then using a login script to map the folder as a drive, you can do it with a batch file as easy as

net use U: \\server\share

The best bet would be to make the share name the same as the users login id, and alter the line to

net use U: \\server\%username%

Then every time they log in, the script kicks off and maps the share to the U drive.
 
Make it their Terminak Services home Directory ? or have you got that setup already ?

[blue]Arguably the best cat skinner around ! [/blue]

Cheers
Scott
 
Net Use U: \\Server\Share\%USERNAME%

Saves sharing loads of directories off your File/Print Server!

Carl.
 
You could use Ogi's suggestion and add on share out the
%username% directory with a $ on the end and using a kix script or similar

net use U: \\server\username$ hides it from the browse list.

[blue]Arguably the best cat skinner around ! [/blue]

Cheers
Scott
 
But if you do:-

\\Server\Share$

As your share, then in your script do my original

Net Use U: \\Server\Share$\%USERNAME%

You're still only talking 1 share and not all your users which is an admin headache!

Ciao,
Carl.
 
Not gonna argue Ogi[smile], t'was an afterthought. I think Home drive location is what he wants tho.

[blue]Arguably the best cat skinner around ! [/blue]

Cheers
Scott
 
Why do we need run a script for each user? if the user is already having mapped network drive in his drive list. Won't it be mapped by defalut in his ica session?

If I connect to Terminal server by RDP ? it mapps all drives including network drives.

All the client's drives will be mapped in his ICA session or not?

thks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top