Definite's Extractor

My findings on Life, Linux, Open Source, and so on.

Windows: Built-In Command That Tells Disk Usage

I was finding df alternative in Windows. The environment is Windows Server Core, thus I am looking for the built-in command that tell the disk usage.

The question, Free Space in a CMD shell pointed to correct direction. The following works for me:

wmic logical disk get deviceid,freespace,size

fsutil volume diskfree c:

Leave a comment