How to know operating system name and version in use?
Moderator: mickeydusaor
How to know operating system name and version in use?
Hi,
How to know operating system name and version we are using? Is there any TSO command?
How to know operating system name and version we are using? Is there any TSO command?
-
- Global Moderator
- Posts: 588
- Joined: Wed Nov 20, 2013 11:53 am
- Location: Mars
Re: How to know operating system name and version in use?
Try
For more information about the command check here
http://pic.dhe.ibm.com/infocenter/zos/v ... vsvarr.htm
Code: Select all
/*REXX*/
SAY MVSVAR(SYSOPSYS)
http://pic.dhe.ibm.com/infocenter/zos/v ... vsvarr.htm
zprogrammer
Re: How to know operating system name and version in use?
Thanks Pandora-Box. Is there any TSO command also you can help with.
- Anuj Dhawan
- Founder
- Posts: 2824
- Joined: Sun Apr 21, 2013 7:40 pm
- Location: Mumbai, India
- Contact:
Re: How to know operating system name and version in use?
1. Not a TSO command, but if you go into ISPF option 7.3 and press DOWN a couple of times will get you to the variable ZOS390RL. The contents of ZOS390RL will be what you need.
2. ISPVCALL: Written by the great Doug Nadel, ISPVCALL provides many interesting details about a TSO/ISPF session, along with what you are after. You can invoke it from ISPF Option 6 and can execute it is as simple as entering: ISPVCALL STATUS from the Command line at Option 6.
3. And you can use this REXX, which will tell you more than what you need. I leave it on you to amend as per your needs:
2. ISPVCALL: Written by the great Doug Nadel, ISPVCALL provides many interesting details about a TSO/ISPF session, along with what you are after. You can invoke it from ISPF Option 6 and can execute it is as simple as entering: ISPVCALL STATUS from the Command line at Option 6.
3. And you can use this REXX, which will tell you more than what you need. I leave it on you to amend as per your needs:
Show REXX
Thanks,
Anuj
Disclaimer: My comments on this website are my own and do not represent the opinions or suggestions of any other person or business entity, in any way.
Anuj
Disclaimer: My comments on this website are my own and do not represent the opinions or suggestions of any other person or business entity, in any way.
Re: How to know operating system name and version in use?
Anuj Dhawan wrote:1. Not a TSO command, but if you go into ISPF option 7.3 and press DOWN a couple of times will get you to the variable ZOS390RL. The contents of ZOS390RL will be what you need.
2. ISPVCALL: Written by the great Doug Nadel, ISPVCALL provides many interesting details about a TSO/ISPF session, along with what you are after. You can invoke it from ISPF Option 6 and can execute it is as simple as entering: ISPVCALL STATUS from the Command line at Option 6.
3. And you can use this REXX, which will tell you more than what you need. I leave it on you to amend as per your needs:
Show REXX
Thanks for the code and other details.
Another query: How did you hide the code in your post?
Create an account or sign in to join the discussion
You need to be a member in order to post a reply
Create an account
Not a member? register to join our community
Members can start their own topics & subscribe to topics
It’s free and only takes a minute