Hi All,
Good day.
I am writing a script to schedule the weekly disk space report.
Get-3parSRPDSpace.
I am getting the output in MBs, is there any way i can convert it to GBs.
Thanks in advance.
Regards,
KK
MB to GB - 3PAR Powershell Toolkit
-
- Posts: 72
- Joined: Sun Dec 21, 2014 3:05 pm
Re: MB to GB - 3PAR Powershell Toolkit
Nope. You'll need to do the math using select-object and defining a new property. @{n="SizeGB";e={$_.size / 1024}}
Something to that effect.
Something to that effect.
Re: MB to GB - 3PAR Powershell Toolkit
Thank you natekippen.
Let me try and get back to you.
Regards,
KK
Let me try and get back to you.
Regards,
KK