🖥️ Batch (CMD)
Get Physical Disk Drives Report (Batch)
Uses wmic to list Physical Disk Drives (Win32_DiskDrive) straight from the command line.
GetDiskDriveReport.bat
@echo off
:: ============================================================
:: GetDiskDriveReport.bat
::
:: Reports Physical Disk Drives via WMI (Win32_DiskDrive).
:: ============================================================
wmic path Win32_DiskDrive get Model,Size,InterfaceType,Status /format:table
pause