Google
 

Trailing-Edge - PDP-10 Archives - integ_tools_tops20_v7_30-apr-86_dumper - tools/xmail/install.com
There are 3 other files named install.com in the archive. Click here to see a list.
$! this com procedure will coy the files from the current directory
$! to the appropriate directories. There also exists a com procedure
$! for systartup to define logical names andinstall images...
$! xmail.exe is the executable image and resides in sys$system:
$! sendhelp.hlb is the send mode help file
$! tsendhelp.hlb is the tsend mode help file - local twxop interface
$! vmmopthlp.hlb is the option mode help file
$! vmmredhlp.hlb is the read mode help file
$! xmailhelp.hlb is the top level help file
$! 
$! this procedure also creates a NEWDCLTBL.EXE which incorporates
$! VMM and may be substituted for the standard dcltables.exe in
$! SYS$LIBRARY:
$ !
$ ! copy the files to there appropriate places
$ !
$ copy xmail.exe sys$system:/prot=w:re/read/write
$ copy *.hlb sys$help:/prot=w:re/read/write
$ !
$ !CREATE THE NEW TABLES
$ !
$ SET COMMAND/OUTPUT=NEWDCLTBL/TABLE=SYS$LIBRARY:DCLTABLES XMAIL.CLD
$ ! check to see if mailer directory exists
$ sho logical sys
$ if $status then goto mailer
$	 assign sys$sysdevice:  sys:		! create the logical sys:
$ MAILER:
$	 DIR SYS:[0,0]MAILER.DIR
$	 IF $STATUS THEN GOTO END
$		 create/dir SYS$SYSDEVICE:[MAILER]/PROT=W:RWE
$ END:
$ WRITE SYS$OUTPUT "ALL DONE!"
$ exit