Unsolved
This post is more than 5 years old
9 Posts
0
972
September 22nd, 2014 08:00
How to List All LUNS Protected in RP 4.0.2.x
How do I list all LUNS Protected in RecoverPoint 4.0.2.X GUI?
No Events found!
Unsolved
This post is more than 5 years old
9 Posts
0
972
September 22nd, 2014 08:00
How do I list all LUNS Protected in RecoverPoint 4.0.2.X GUI?
Top
justpaul1
25 Posts
1
September 22nd, 2014 09:00
1. Go to Protection -> Manage Protection
2. Click on the CG you want to review in the left column
3. Click the "Replication Sets" tab
4. Repeat steps 1 through 3 for all CG's
If you are using Posh-RecoverPoint, the command would be:
Get-RPGroupUID | Get-RPGroupReplicationSetVolume | select CopyName,serialnumber,volumeName
From there, you could pipe it to a CSV by adding
| Export-Csv c:\temp\rpvolumes.csv
to the end.
forshr
2 Intern
•
1.1K Posts
2
September 23rd, 2014 04:00
Or use the get_group_volumes CLI command without specifying a group name, which is the default anyway.