About Me

My photo
Bergen, Norway
19th times Microsoft MVP (Security and Windows). IT-Dude @SpareBankenNorge

Monday, November 26, 2012

How to get PC Manufacturer and Model with WMI

Need to get the Manufacturer and/or Model of a computer?

You can use the build in command WMIC.EXE for this.

Just type in:
WMIC.exe ComputerSystem Get Model, Manufacturer

To do it against a Remote system:
WMIC.exe /node:"ComputerNameORIpAddress" ComputerSystem Get Model, Manufacturer


You can of course get it from the GUI as well, then you just use "System Information"

Cleaning Up Unknown IAM Assignments Across Azure Subscriptions

  If you manage more than a handful of Azure subscriptions, IAM hygiene quickly becomes one of those tasks everyone knows is important, but ...