#Disk Info wmic /output:C:\Dsk.csv /namespace:\\root\cimv2 path Win32_LogicalDisk get FileSystem, FreeSpace, Size, VolumeSerialNumber, VolumeName, caption, description /format:csv.xsl #CPU Info (html) wmic /output:C:\Proc.htm CPU get Description, DeviceID, Manufacturer, MaxClockSpeed, Name, Status, SystemName /format:hform.xsl #CPU Info (CSV) wmic /output:C:\Proc.htm CPU get Description, DeviceID, Manufacturer, MaxClockSpeed, Name, Status, SystemName /format:csv.xsl #Physical Disk Info wmic /output:C:\Inventory.html /namespace:\\root\cimv2 path Win32_LogicalDisk get FileSystem, FreeSpace, Size, VolumeSerialNumber, VolumeName, Caption, description /format:hform.xsl #Computer Info (appended to a file) wmic /append:C:\Inventory.html /namespace:\\root\cimv2 path Win32_ComputerSystem get CurrentTimeZone, Description, Domain, TotalPhysicalMemory, Model, Name, UserName /format:hform.xsl #Bios Info (appended to a file) wmic /append:C:\Inventory.html /namespace:\\root\cimv2 path Win32_BIOS get Name, SMBIOSBIOSVersion, SerialNumber, Version, BuildNumber, Status /format:hform.xsl #Memory Info (appended to a file) wmic /append:C:\Inventory.html /namespace:\\root\cimv2 path Win32_LogicalMemoryConfiguration get AvailableVirtualMemory, Caption, Description, Name, SettingID, TotalPageFileSpace, TotalPhysicalMemory, TotalVirtualMemory /format:hform.xsl #Nic Info (appended to a file) wmic /append:C:\Inventory.html /namespace:\\root\cimv2 path Win32_NetworkAdapter get Caption, DNSDomain, DNSHostName, DefaultIPGateway, Description, IPAddress, IPSubnet, MACAddress, S erviceName, WINSPrimaryServer, WINSSecondaryServer /format:hform.xsl CPU Info (appended to a file) wmic /append:C:\Inventory.html /namespace:\\root\cimv2 path Win32_Processor get Caption, Description, DeviceID, Manufacturer, MaxClockSpeed, Name, Status, SystemName /format:hform.xsl