c$ that are at 1 GB or less on free space.
Not certain if it can be done, but I am hitting a wall at the moment.
trilobite rex
You should be able to use the "Volumes with High Percent Usage" resource, as well as the "Top XX Volumes by Disk Space Used" resource.
Then, just use the SQL filter to narrow results down to volumes with caption "C:\"
Volumes.Caption LIKE '*C:\*'
Then add the limit for the storage.
AND Volumes.VolumeSpaceAvailable <= 1500000000
The final filter should look something like this. (You will probably need to adjust the storage size)
Volumes.Caption LIKE '*C:\*' AND Volumes.VolumeSpaceAvailable <= 1500000000
Is that what you were looking to accomplish?
Thank you,
-Will
A few ways to go about it, could do a table like this:
Or you could just do a filter on the top volumes by space used resource like this
These answers did the trick! My thanks and take the rest of the day off...
trilobite rex Glad to hear you got it working. If you have time, please mark one of the responses as correct so we can help the next person that has the same question.
couldn't see a mark as correct answer.