Sysinternals
Advanced system utilities to manage, troubleshoot, and diagnose Windows and Linux systems and applications.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
how to use sysinternal DU along with doskey or findstr?
Well, it depends on what you are trying to do.
Here's an example that reports on directories that contain zero files in the du report.
du -l 2 c:\windows | findstr /c:" 0 "
Or the inverse that shows only directories that contain files.
du -l 2 c:\windows | findstr /c:" 0 " /v