Hi,
You can use the "-ExpandProperty" parameter.
$age=Get-MpComputerStatus |Select-Object -ExpandProperty -Property AntivirusSignatureAge
Or use the member access operator ".".
$age=(Get-MpComputerStatus).AntivirusSignatureAge
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.