Jan 03 2023 03:00 AM
Hi,
I'm developing my first scripts to read data from Defender 365 Hunting queries and then use those values to be stored on a variable and sent over by email for some reports.
For example, now I've got the result from a query, which after parsing the JSON with the command:
$vulnData = $vulnResponse.Content | ConvertFrom-Json
Then, I've got this on $vulnData variable:
email address removed for privacy reasons Count
---------------- -----
#Int64 100
How can I extract the number to a variable?
Thanks
Jan 04 2023 02:01 PM
Jan 05 2023 03:10 AM
Hi,
That was what I was expecting, but in fact when I do a $vulnData.Count I get a value of 1, instead of the value which is contained.
Am I missing something obvious here?
Jan 05 2023 03:14 AM
SolutionJan 05 2023 03:36 AM