Hello;
I'm sure this is something simple but I can't seem to get it. I'm running a CMPivot on a Device Collection to get which servers have less then 10 GB of free space on the C: drive. Note that each of the servers in the device collections have at lease 2 drives.
Here's a sample of my query:
Disk | where (Name == 'C:') | where (FreeSpace <= 85899345920) | order by FreeSpace asc
Disk | where (Name == 'C:') | where (FreeSpace < 85899345920) | order by FreeSpace asc
I've tried both and each one gives me the same results. I only want to see servers that are less than 10 GB of free space on the C: drive. What am I missing in my query statement?
I'm sure this is something simple but I can't seem to get it. I'm running a CMPivot on a Device Collection to get which servers have less then 10 GB of free space on the C: drive. Note that each of the servers in the device collections have at lease 2 drives.
Here's a sample of my query:
Disk | where (Name == 'C:') | where (FreeSpace <= 85899345920) | order by FreeSpace asc
Disk | where (Name == 'C:') | where (FreeSpace < 85899345920) | order by FreeSpace asc
I've tried both and each one gives me the same results. I only want to see servers that are less than 10 GB of free space on the C: drive. What am I missing in my query statement?