For example, to support Windows NT4/200x clients, set the following in the [global] section of the smb.conf
file:
logon path = \\profileserver\profileshare\profilepath\%U\moreprofilepath
|
This is typically implemented like:
logon path = \\%L\Profiles\%U
|
where “%L” translates to the name of the Samba server and “%U” translates to the username.
The default for this option is \\%N\%U\profile
, namely, \\sambaserver\username\profile
.
The \\%N\%U
service is created automatically by the [homes] service. If you are using
a Samba server for the profiles, you must make the share that is specified in the logon path
browseable. Please refer to the man page for smb.conf
regarding the different
semantics of “%L” and “%N”, as well as “%U” and “%u”.