Skip to content

Instantly share code, notes, and snippets.

@tiandiduwuxiaoxiao
Last active January 22, 2018 03:05
Show Gist options
  • Save tiandiduwuxiaoxiao/db66329a40930f980ce1aa98e5f6f966 to your computer and use it in GitHub Desktop.
Save tiandiduwuxiaoxiao/db66329a40930f980ce1aa98e5f6f966 to your computer and use it in GitHub Desktop.
some issues about window operation system

Window operation system issue collection:zzz:

😶1. How can I see how many CPUs my computer has in Windows 7?

  • Just run this in the command prompt:
WMIC CPU Get DeviceID,NumberOfCores,NumberOfLogicalProcessors
  • Or if you're lazy, just type:
WMIC CPU Get /Format:List
  • and look for entries with the names NumberOfCores and NumberOfLogicalProcessors;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment