Last active
October 23, 2015 11:41
-
-
Save kapb14/a4dacb176b2bcc378397 to your computer and use it in GitHub Desktop.
как посмотреть информацию о железе из CMD.exe (PsExec)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| как посмотреть информацию о железе из 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