home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / os / vms / 17609 < prev    next >
Encoding:
Internet Message Format  |  1992-11-08  |  2.8 KB

  1. Path: sparky!uunet!charon.amdahl.com!pacbell.com!ames!sun-barr!rutgers!cmcl2!rlgsc.com!gezelter
  2. From: gezelter@rlgsc.com
  3. Newsgroups: comp.os.vms
  4. Subject: Re: Installing software
  5. Message-ID: <1992Nov6.141048.244@rlgsc.com>
  6. Date: 6 Nov 92 19:10:48 GMT
  7. References: <6204@tuegate.tue.nl>
  8. Organization: Robert Gezelter Software Consultant, Flushing, NY
  9. Lines: 58
  10.  
  11. In article <6204@tuegate.tue.nl>, frankp@blade.stack.urc.tue.nl (Frank van de Pol) writes:
  12. > Hello, 
  13. > is there anybody that could help me with the following problem:
  14. > I want to 'install' some utilities that have to get their parameters from
  15. > the commandline. For example 'ZIP -E TEST.ZIP FILE1.TXT FILE2.TXT'. If I 
  16. > try to run this using 'RUN ZIP -E etc.', I get some error from DCL that tells
  17. > me that I give too many parameters. 
  18. > Running the install program, and giving a 
  19. > 'Create/open/shared sys$sharedprogs:zip.exe' command to register the zip.exe
  20. > program to system doesn't cure the problem.
  21. > The answer could be obvious, but I'm new to VMS, and I've no system manger
  22. > to give me the support (I'm my own system manager...). So _please_ respond.
  23. > Regards,
  24. > Frank.
  25. > ========================------------------> 
  26. > #define NAME    "Frank van de Pol"     /| :  a typical PC boot sequence: :-(
  27. > #define ADDRESS "mgr. Nelislaan 10"   / | :  tick, tick, tick, .(etc)., tick
  28. > #define CITY    "4741 AB Hoeven"     /--| :  bhuurrrrrr, bruzzzzzz, pieereep
  29. > #define COUNTRY "The Netherlands"   /   | :  doggadoggadoggadoggadogga brrrr
  30. > #define EMAIL   "frankp@stack.urc.tue.nl" :  530 kB free memory (of 8MEG???)
  31. -- 
  32. Frank,
  33.  
  34. What you need to do is define a DCL symbol which points at the 
  35. image to be executed. For example, the following command is used 
  36. in my LOGIN.COM to setup a symbol for KERMIT, which has the 
  37. capability to get its paramters from the command line:
  38.  
  39.         $ KERMIT :== $ KERMIT
  40.  
  41. KERMIT happens to be in SYS$SYSTEM, so I do not need to specify a 
  42. device name. In another case, where the applications program does 
  43. not reside in SYS$SYSTEM, I use the command:
  44.  
  45.         $ SETUPLABLST :== @ FREDDISK:SETUPLABLST
  46.  
  47. FREDDISK is a logical which points to a directory where all of 
  48. the production software is housed.
  49.  
  50. I hope that the above is helpful. If I can be of further 
  51. assistance, please feel free to contact me.
  52.  
  53. - Bob
  54. +--------------------------------------------------------------------------+
  55. | Robert "Bob" Gezelter                       E-Mail:  gezelter@rlgsc.com  |
  56. | Robert Gezelter Software Consultant         Voice:   +1 718 463 1079     |
  57. | 35-20 167th Street, Suite 215               Fax:       (on Request)      |
  58. | Flushing, New York  11358-1731                                           |
  59. | United States of America                                                 |
  60. +--------------------------------------------------------------------------+
  61.