Skip to content

Instantly share code, notes, and snippets.

@kapb14
Last active October 23, 2015 11:41
Show Gist options
  • Select an option

  • Save kapb14/a4dacb176b2bcc378397 to your computer and use it in GitHub Desktop.

Select an option

Save kapb14/a4dacb176b2bcc378397 to your computer and use it in GitHub Desktop.
как посмотреть информацию о железе из CMD.exe (PsExec)
как посмотреть информацию о железе из CMD.exe (PsExec)
# модель процессора
wmic cpu get name,CurrentClockSpeed,MaxClockSpeed
# версия BIOS
wmic bios get name,serialnumber,version
# материнская плата и её UUID
wmic csproduct get name,identifyingnumber,uuid
# оперативная память
wmic memphysical get Manufacturer, Model, SerialNumber, MaxCapacity, MemoryDevices
# или
wmic memorychip get BankLabel, Capacity, Caption, CreationClassName, DataWidth, Description, Devicelocator, FormFactor, HotSwappable, InstallDate, InterleaveDataDepth, InterleavePosition, Manufacturer, MemoryType, Model, Name, OtherIdentifyingInfo, PartNumber, PositionInRow, PoweredOn, Removable, Replaceable, SerialNumber, SKU, Speed, Status, Tag, TotalWidth, TypeDetail, Version
# http://blogs.technet.com/b/askperf/archive/2012/02/17/useful-wmic-queries.aspx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment