mars_dosutils-0.01
This commit is contained in:
46
doc
Executable file
46
doc
Executable file
@@ -0,0 +1,46 @@
|
||||
/* DOC for NET.EXE */
|
||||
This is a short description of net.exe which is a simple DOS-client
|
||||
programm to allow standard NCP network actions, mainly for mars_nwe.
|
||||
All functions are called as a second parameter.
|
||||
This programm is very incomplete till now, but some functions
|
||||
works well with mars_nwe.
|
||||
|
||||
LOGOUT:
|
||||
Logout from a NCP Server.
|
||||
|
||||
LOGIN:
|
||||
usage: LOGIN [-u] [user | user password]
|
||||
-u = use unencrypted password.
|
||||
With this function you can log into a NCP Server.
|
||||
Its only make a login, no mappings or something else.
|
||||
|
||||
If you want a login similar to NOVELL's login.exe you should
|
||||
do it with a batch job.
|
||||
|
||||
example:
|
||||
[\LOGIN\LOGIN.BAT]
|
||||
@echo OFF
|
||||
net logout
|
||||
net login %1 %2 %3
|
||||
if errorlevel 1 goto :end
|
||||
map h:=HOME:
|
||||
if not exist h:\profile.bat goto :end
|
||||
h:
|
||||
profile.bat
|
||||
:end
|
||||
|
||||
PASSWD:
|
||||
usage: PASSWD [user]
|
||||
With this function you are able to change a users password.
|
||||
This call uses the old unencryted change password call !!
|
||||
|
||||
|
||||
PATH:
|
||||
usage: PATH sn:[=[path]]
|
||||
sn = 's1' .. 's16'
|
||||
|
||||
With this function a new path element can be created.
|
||||
Its only sets the path environment.
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user