Displaying 1 result from an estimated 1 matches for "mepass".
Did you mean:
epass
2003 Apr 02
1
smbclient 2.2.8 gives NT_STATUS_LOGON_FAILURE
...is case - according to what I learned from our
Win-Admin - the logon name must have the form:
domain\user
I wrote a small shell script - and it succeeds.
The sample-code (6.6.6.6 is a win2k-server):
#!/bin/ksh
WSHARE="//6.6.6.6/myshare"
WUSER=MYDOMAIN\\domuser
WPASS=mepass
$WRDIR=me2dir
/usr/local/samba/bin/smbclient $WSHARE $WPASS -U $WUSER -d 2 -c "cd
$WRDIR; dir"
And now the really strange part: when I issue the SAME command
(parameters) from a PERL script, from the plain command line or
even from within the same script with a slightly differen...