top of page

Useful WMIC Commands

Writer's picture: michael  michael

Updated: Apr 6, 2022

This is more a cheat sheet / repository for my own use.

Get Disk Info: wmic.exe diskdrive get model,name,size

Get Process List: wmic.exe process get name,processid

Kill Process: wmic.exe process where processid=”1000″ call terminate

Memory Manufacturer: wmic memorychip get devicelocator, manufacturer

Memory Info: wmic MEMORYCHIP get BankLabel, DeviceLocator, Capacity, Speed

Memory Part Number: wmic memorychip get devicelocator, partnumber

BIOS Info: wmic.exe /Output:bios.html BIOS Get Manufacturer,Name,Version /Format:htable

OS Info / Systemtype: wmic computersystem get “Model”,”Manufacturer”,”Name”,”UserName”

List Installed Updates: wmic.exe qfe get description,installedOn

CPU Info: wmic cpu get caption, deviceid, name, numberofcores, maxclockspeed, status

10 views0 comments

Recent Posts

See All

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page