- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- open VMS version #
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
Forums
Discussions
Discussions
Discussions
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
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
02-08-2005 08:27 AM
02-08-2005 08:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 08:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 08:30 AM
02-08-2005 08:30 AM
Re: open VMS version #
penVMS V7.3 on node ALPHA1 8-FEB-2005 16:30:15.59 Uptime 2 13:13:16
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 08:36 AM
02-08-2005 08:36 AM
Re: open VMS version #
This means that you have OpenVMS 7.3
Which is the version which commes before 7.3-1.
Bojan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 08:59 AM
02-08-2005 08:59 AM
Re: open VMS version #
If you are doing this from a DCL procedure, you want the lexical function F$GETSYI, as shown by the following example:
$ WRITE SYS$OUTPUT F$GETSYI("VERSION")
Be careful when parsing the output, there are a variety of version tags out there including:
- field test identifiers
- x.y-z releases
- xHy releases (e.g., 6.2-1H3)
My recollection is that there MAY be a writeup in one of the manuals, possibly the PCSI Manual, about parsing the results of a version number query (my apologies, I do not have the reference at hand at this instant).
I hope that the above is helpful.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 06:32 PM
02-08-2005 06:32 PM
Re: open VMS version #
Bojan told you the exact command. On my system I can see V7.3-2.
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 07:01 PM
02-08-2005 07:01 PM
Re: open VMS version #
There are a few ways to do this, the easiest are the following
1. DCL (As suggested by Robert)
$ Ver = F$GETSYI("VERSION")
$ sy sym Ver
2. Do the following
$ show sys/page
(on the top left side of your screen
just below PID and Process.. you can see
the version of VMS being run)
regards
Mobeen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2005 07:03 PM
02-08-2005 07:03 PM
Re: open VMS version #
Bojan is right .. see the same command from one of my OpenVMS 7.3-1 servers below
NODE1>> show sys/noproc
OpenVMS V7.3-1 on node NODE1 9-FEB-2005 03:03:20.84 Uptime 23 03:20:01
regards
Mobeen