nt domain logon via mos dos script
nt domain logon via mos dos script
(OP)
Hope someone can help. I have thousands of win 95/98 machines which have tcp/ip addresses from out corportate DHCP servers. However they only belong to their local networks and do not logon on to the NT domain.
I will be running a SAP R/3 user exist which will call a dos batch file which will then down load small files from a NT server in out corporate domain.
I require help with writting the file in respect to connecting and validating these machines to the NT machine via MS Dos. I realise that I can use "NET USE * \\bla bla bla but do not know how about to add my user name and password for that server to the command line string. I realise that NET LOGON cannot be called from within a MS DOS window.
Any urgent assistance is greatly appreciated.
:)
I will be running a SAP R/3 user exist which will call a dos batch file which will then down load small files from a NT server in out corporate domain.
I require help with writting the file in respect to connecting and validating these machines to the NT machine via MS Dos. I realise that I can use "NET USE * \\bla bla bla but do not know how about to add my user name and password for that server to the command line string. I realise that NET LOGON cannot be called from within a MS DOS window.
Any urgent assistance is greatly appreciated.
:)
RE: nt domain logon via mos dos script
NET USE X: \\SERVER\SHARE %PASSWORD% /USER:%USERNAME%
OR
NET USE X: \\SERVER\SHARE %PASSWORD% /USER:%DOMAIN%\%USERNAME%
dxd
RE: nt domain logon via mos dos script
RE: nt domain logon via mos dos script
I think the simplest solution would be to have one machine outside of the domain security model replicate the data from the domain server or shares you are needing access to.
The machine need not be a member of the domain, however the user account and password must match one of those with access to the domain share.
Then the other machines outside of the domain can simply use the net use command and attach to this computer to download the files needed.
There is no method I am aware of that will allow you to authenticate to a domain using real-mode tools while running Windows 9x 32bit client and drivers. If it were only a few computers then you could use a Dos boot disk to attach and download the files, however since you have thousands of users it seems to make more since to push this data to a workstation/file server outside of the domain so that it can be easily accessed by the clients that require it.
dxd