logon script

  • Thread starter Thread starter nico
  • Start date Start date
N

nico

I have 2 different domains, and because we use the same software on both
domains, I installed a win2003server, with 2 nic's to each domain, but that
is not a member of any of the domains. I installed all the software on this
server (that is called 'data'), I made a share accesible to 'everyone' &
'software'(software is a user i created also to get acces to the share
software.
In the logonscript for the users I added

net use s: \\192.168.0.1\software$ 192.168.0.1\software /user:DATA\software
192.168.0.1 is the ip of the server 'data' fot 1 of the domains

Now I get an error 'unknown username or password', can anyone correct my
logonscript.

tx
 
nico said:
I have 2 different domains, and because we use the same software on both
domains, I installed a win2003server, with 2 nic's to each domain, but that
is not a member of any of the domains. I installed all the software on this
server (that is called 'data'), I made a share accesible to 'everyone' &
'software'(software is a user i created also to get acces to the share
software.
In the logonscript for the users I added

net use s: \\192.168.0.1\software$ 192.168.0.1\software /user:DATA\software
192.168.0.1 is the ip of the server 'data' fot 1 of the domains

Now I get an error 'unknown username or password', can anyone correct my
logonscript.

tx

Start a Command Prompt and type

net use /? or
net help use

to get the full help screen for "net use". You will then see that
the things between *** in your command make no sense:

net use s: \\192.168.0.1\software$ ***192.168.0.1\software***
/user:DATA\software

Furthermore, why use an IP address instead of a server name? And is
"software"
the name of a user?
 
Back
Top