- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- How to get Installed Products path and details
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-23-2008 11:23 PM
тАО09-23-2008 11:23 PM
Suppose I have a database installed, so I need to get complete list of product and path through DCL command.
Thanks,
Alok
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-23-2008 11:48 PM
тАО09-23-2008 11:48 PM
Re: How to get Installed Products path and details
What about
PRODUCT SHOW HISTORY
and/or look in the file
SYS$UPDATE:VMSINSTAL.HISTORY
Regards,
Kris (aka Qkcl)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 12:02 AM
тАО09-24-2008 12:02 AM
Re: How to get Installed Products path and details
$ PROD SHOW PROD (add /FULL if more info is required)
will show the products installed using the PRODUCT utility. These products came as .PCSI kits. Most VMS products (not all!) are released this way.
The installation path can be obtained using
$ PIPE PROD SHOW OBJECT *
It will show the directories where
There is a way to get informatio for products installed using VMS$INSTAL but I lost memmory wheer and how. However, a DIR SYS$HELP:*.RELEASE* shows what products mauy eventually be installed.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 12:19 AM
тАО09-24-2008 12:19 AM
Re: How to get Installed Products path and details
Also, is there any DCL command through which we can see Install location of these products rather than looking into file?
Regards,
Alok
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 12:46 AM
тАО09-24-2008 12:46 AM
Re: How to get Installed Products path and details
please type the file vmsinstal.history;
you will get all there history.
Regards
Sanjay Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 12:54 AM
тАО09-24-2008 12:54 AM
Re: How to get Installed Products path and details
I am just two days old to OpenVMS env and there seems lots difference between standard UNIX commands and OpenVMS commands,
Can you please provide exact command which I need to fire on screen.
Thanks,
Alok
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 04:00 AM
тАО09-24-2008 04:00 AM
Re: How to get Installed Products path and details
The normal way for isntalling software on OpenVMS is using PRODUCT (shorthand: PROD) or VMSINSTAL. The first will store installation information in it's own database, as will VMSINSTAL. Both have been mentioned before.
If other products are installed by another way (eg. just extracting a ZIP file) theer is no other way than just scan the disks and examine the contents. DIR
Anothe possibility is screening the system logicals: $ SHOW LOG /SYSTEM/FULL eand examine the output, and use it (combined with the directory output) to locate applications.
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 05:40 AM
тАО09-24-2008 05:40 AM
Re: How to get Installed Products path and details
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 06:38 AM
тАО09-24-2008 06:38 AM
Re: How to get Installed Products path and details
It removes install+deinstall of a product of the listing and sorts per product name.
And of course anyone could have installed stuff by copying exe's, installing backup save sets, zip files etc without any log.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 11:45 AM
тАО09-24-2008 11:45 AM
SolutionI assume this is for some proof of configuration control. If that's the case, you need to get a definition of what a "product" is. Is it any executable image (program) that exists on the box? Any program that can be executed by any user on the system?
What VMS keeps track of are products that are installed using either the product install (PCSI kits) or the SYS$UPDATE:VMSINSTAL.COM command procedure (script in UNIX terms) (VMSINSTAL kits).
If third party products use their own installation procedure, then you have to track that with some other procedure.
I don't think the problem is really any different than with UNIX. How do you do it there? There are probably more tools available on UNIX to detect common "products", but my guess is that they probably need to "find" the executable files and compare them against a database.
And as with UNIX (really any O/S), time stamps on files can't be trusted, since they can be set to arbitrary values (at least by the owner or a privileged user).
Jon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-24-2008 12:26 PM
тАО09-24-2008 12:26 PM
Re: How to get Installed Products path and details
Well said. File dates can also be preserved from other programs (e.g. ZIP/UNZIP, BACKUP).
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2008 12:18 AM
тАО09-25-2008 12:18 AM
Re: How to get Installed Products path and details
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-25-2008 01:47 AM
тАО09-25-2008 01:47 AM
Re: How to get Installed Products path and details
Wim