Re: [Samba] how to map shared folders when start user profile in XP

2010-11-19 Thread marcos gonzalez
: samba@lists.samba.org Betreff: Re: [Samba] how to map shared folders when start user profile in XP Hi No, the problem continues. I putted in smb.conf this: logon script = %u.bat logon path = \\%n\Profiles\%u logon drive = H: And inside user profile, in the root folder, i putted user.bat

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-19 Thread Daniel Müller
...@tropenklinik.de Cc: anil; samba@lists.samba.org Betreff: Re: [Samba] how to map shared folders when start user profile in XP Hi But If I put [netlogon] comment = Network Logon Service path = /pathtoyour/netlogon/ Only accepts one script and my doubt is how to config one script for user. Thanks 2010/11

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-19 Thread Aaron E.
...@tropenklinik.de Internet: www.tropenklinik.de Von: marcos gonzalez [mailto:marcos.gonzalez.c...@gmail.com] Gesendet: Freitag, 19. November 2010 13:33 An: muel...@tropenklinik.de Cc: anil; samba@lists.samba.org Betreff: Re: [Samba] how to map shared folders when start user profile in XP Hi

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-17 Thread marcos gonzalez
Hi No, the problem continues. I putted in smb.conf this: logon script = %u.bat logon path = \\%n\Profiles\%u logon drive = H: And inside user profile, in the root folder, i putted user.bat with instrucciones to test. If I execute manually works fine, but not works at start of sesion.

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-17 Thread Daniel Müller
Gesendet: Mittwoch, 17. November 2010 12:41 An: anil Cc: samba@lists.samba.org Betreff: Re: [Samba] how to map shared folders when start user profile in XP Hi No, the problem continues. I putted in smb.conf this: logon script = %u.bat logon path = \\%n\Profiles\%u logon drive = H: And inside user

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread Anil Wakhare
Hi, I am not getting ur question.can u explain it briefly. On Tue, Nov 16, 2010 at 1:08 PM, marcos gonzalez marcos.gonzalez.c...@gmail.com wrote: Hi yes, Im interested in a login script, but Im a newbie with this and I don't know where I can take examples. Inside samba documentacion there

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread Daniel Müller
: samba@lists.samba.org Betreff: Re: [Samba] how to map shared folders when start user profile in XP Hi yes, Im interested in a login script, but Im a newbie with this and I don't know where I can take examples. Inside samba documentacion there are no the sufficient complex examples and in my case Im

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread marcos gonzalez
Hi Im searching examples to configure logon scripts for every user. If I configure netlogon how this [global] logon path = \\%N\profiles\%U logon drive = H: logon home = logon script = logon.bat [netlogon] # comment = Network Logon Service path = /var/lib/samba/netlogon # admin

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread Daniel Müller
--- -Ursprüngliche Nachricht- Von: samba-boun...@lists.samba.org [mailto:samba-boun...@lists.samba.org] Im Auftrag von marcos gonzalez Gesendet: Dienstag, 16. November 2010 11:35 An: samba@lists.samba.org Betreff: Re: [Samba] how to map shared folders when start user profile

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread Anil Wakhare
Hi, According to me,you can first configure the smb.conf file. Use the following domain master = yes domain logons = yes # the login script name depends on the machine name logon script = %m.bat # the login script name depends on the unix user used logon

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread marcos gonzalez
Hi I understand If I change the smb.conf to : logon script = %u.bat logon path = \\%n\Profiles\%u logon drive = H: putting the script user.bat into the root profile folder (for example /var/lib/samba/profiles/user/ ) for every user load their configuration? Thanks! 2010/11/16 Anil Wakhare

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread anil
Hi, Your problem is sorted now? On 11/16/2010 10:18 PM, marcos gonzalez wrote: Hi I understand If I change the smb.conf to : logon script = %u.bat logon path = \\%n\Profiles\%u logon drive = H: putting the script user.bat into the root profile folder (for example

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-16 Thread Chris Weiss
that's because login scripts are a windows thing. Any old NT4 examples will work with a samba3 domain. On Tue, Nov 16, 2010 at 1:38 AM, marcos gonzalez marcos.gonzalez.c...@gmail.com wrote: Hi yes, Im interested in a login script, but Im a newbie with this and I don't know where I can take

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-15 Thread Gaiseric Vandal
Are you using a login script? That should take care of mapping shared folders to drive letters. You can't use login scripts to setup printers. If the printers are properly shared from a Windows server or Samba server users should be able to easily locate them in My Network Places. On

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-15 Thread Anil Wakhare
hi, Thank you for giving relpy,I have made the samba successfully,it access to all the user,i want only script to add multiple user with password to samba server. On Mon, Nov 15, 2010 at 10:25 PM, Gaiseric Vandal gaiseric.van...@gmail.com wrote: Are you using a login script? That should take

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-15 Thread Gaiseric Vandal
You should be able to use a bash or bourne shell script e.g. for i in `cat userlist.txt` do adduser $i .. smbpasswd -a $i done With adduser just set the local unix account /bin/false as the shell. On 11/15/2010 12:05 PM, Anil Wakhare wrote: hi, Thank you for

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-15 Thread Anil Wakhare
Thank you!! On Mon, Nov 15, 2010 at 10:50 PM, Gaiseric Vandal gaiseric.van...@gmail.com wrote: You should be able to use a bash or bourne shell script e.g. for i in `cat userlist.txt` do adduser $i .. smbpasswd -a $i done With adduser just set the

Re: [Samba] how to map shared folders when start user profile in XP

2010-11-15 Thread marcos gonzalez
Hi yes, Im interested in a login script, but Im a newbie with this and I don't know where I can take examples. Inside samba documentacion there are no the sufficient complex examples and in my case Im interested to made a script for every user. Suggestions? Thnaks 2010/11/15 Gaiseric Vandal

[Samba] how to map shared folders when start user profile in XP

2010-11-12 Thread marcos gonzalez
Hi guys I have configured samba 3.3.2 in a domain with Xp clients and I would like to config inside clients the shared folders how units when users starts, and the printers too. Im looking for this and the information is very confused, and I dont know which the fast option for users. Suggestions?