Read-only WMIC examples
wmic os get Caption,Version,BuildNumber
wmic computersystem get Manufacturer,Model,TotalPhysicalMemory
wmic logicaldisk get DeviceID,FileSystem,FreeSpace,SizeModern PowerShell equivalents
Get-CimInstance Win32_OperatingSystem
Get-CimInstance Win32_ComputerSystem
Get-CimInstance Win32_LogicalDiskFilter the properties you actually need and avoid building new automation around WMIC. Test scripts on the Windows versions you support.
With Screensie
Command Center PCInfo gathers operating system, hardware, storage, display, network-adapter and driver details into a readable interface. Its confirmed PowerShell console is available for an authorized one-off query when the built-in inventory does not cover it.
Reference: Microsoft WMIC documentation and deprecation notice.