top of page

Useful WMIC Commands

  • Writer: michael
    michael
  • Mar 17, 2021
  • 1 min read

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

Kommentare

Mit 0 von 5 Sternen bewertet.
Noch keine Ratings

Rating hinzufügen
bottom of page