IT and Network solution

بایگانی

۳ مطلب با موضوع «دستورات WMIC» ثبت شده است

دیدن مشخصات اسلات رم و مدل رم

شنبه, ۱۲ دی ۱۳۹۴، ۱۲:۲۶ ب.ظ
wmic /node:"Alizadeh-z" memorychip get BankLabel,Capacity,tag,status,speed,model

  • جلال شاهوند
wmic /node:"Hasani-l" PATH Win32_videocontroller GET description,adapterram,caption
  • جلال شاهوند

دیدن مشخصات مادربرد کلاینت از راه دور

شنبه, ۱۲ دی ۱۳۹۴، ۱۲:۱۲ ب.ظ

Windows 8 and 8.1 users can press Windows Key + x + a.  Alternately, in Windows 7, you can open an elevated command prompt by clicking the Windows orb in the lower left corner of the screen and typing:

cmd

Then just press Ctrl + Shift + Enter

Alright, once you have that going, throw in the following command:

Wmic baseboard get product, Manufacturer, version, serialnumber

WMIC Baseboard get product manufacturer version serialnumber

Here you can see my baseboard (motherboard) manufacturer is Lenovo and we have both the product and serial numbers too.

The magic behind the command starts with that wmic thingy.


 

wmic is an acronym for Windows Management Instrumentation.  It’s adored by scripting junkies and power users because it allows them to glean a cornucopia of facts about the system.

What kind of facts?

Last year, I showed you how to use wmic to get your Dell service tag but you can do so much more than that.

For example, if you want to get the dimensions of your computer monitor you can type

wmic desktopmonitor get screenheight, screenwidth

wmic desktopmonitor get screenheight, screenwidth

There are way too many wmic commands for me to list here but I just wanted you to get a feel for what you can do with this nimble command so you can pull it out whenever you need it.

If you’ve used wmic to get some interesting data about your system please share the goodies in the comments below!

  • جلال شاهوند