🖥️ Batch (CMD)

Get Physical Disk Drives Report (Batch)

Uses wmic to list Physical Disk Drives (Win32_DiskDrive) straight from the command line.

By WindowsScripting.com · 309 B
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