收集有关计算机的信息Collecting Information About Computers

本文内容

CimCmdlets 模块中的 cmdlet 是对常规系统管理任务最重要的 cmdlet。所有关键子系统设置都通过 WMI 公开。此外,WMI 将数据视为一个或多个项的集合中的对象。由于 Windows PowerShell 也可以使用对象,且具有允许你以相同方式处理单个和多个对象的管道,因此通过泛型 WMI 访问可以非常轻易地执行某些高级任务。

以下示例演示如何针对任意计算机使用 Get-CimInstance 收集特定信息。我们为 ComputerName 参数指定点值 (.),它表示本地计算机。你可以指定与可以通过 WMI 访问的任意计算机相关联的名称或 IP 地址。若要检索有关本地计算机的信息,可以省略 ComputerName 参数。

列出桌面设置Listing Desktop Settings

我们将首先处理用于收集有关本地计算机上桌面信息的命令。

  1. Get-CimInstance -ClassName Win32_Desktop -ComputerName .

这将返回所有桌面的信息,无论它们是否正在使用中。

备注

WMI 类返回的某些信息可能非常详细,且通常包括有关 WMI 类的元数据。因为这些元数据属性大多具有以 Cim 开头的名称,因此可以使用 Select-Object 筛选属性。指定值为“Cim*”的 -ExcludeProperty 参数。例如:

  1. Get-CimInstance -ClassName Win32_Desktop -ComputerName . | Select-Object -ExcludeProperty "CIM*"

若要筛选掉元数据,请使用管道运算符 (|),将 Get-CimInstance 命令的结果发送到 Select-Object -ExcludeProperty "CIM*"

列出 BIOS 信息Listing BIOS Information

WMI Win32_BIOS 类返回有关本地计算机上系统 BIOS 的高度压缩的完整信息:

  1. Get-CimInstance -ClassName Win32_BIOS -ComputerName .

列出处理器信息Listing Processor Information

可以通过使用 WMI 的 Win32_Processor 类检索常规处理器信息 ,尽管很可能需要筛选信息:

  1. Get-CimInstance -ClassName Win32_Processor -ComputerName . | Select-Object -ExcludeProperty "CIM*"

对于该处理器系列的常规描述字符串,可以仅返回 SystemType 属性:

  1. Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName . | Select-Object -Property SystemType
  2. SystemType
  3. ----------
  4. X86-based PC

列出计算机制造商和型号Listing Computer Manufacturer and Model

Win32_ComputerSystem 中也提供了计算机型号信息。标准显示输出不需要任何筛选便可提供 OEM 数据:

  1. Get-CimInstance -ClassName Win32_ComputerSystem
  1. Name PrimaryOwnerName Domain TotalPhysicalMemory Model Manufacturer
  2. ---- ---------------- ------ ------------------- ----- ------------
  3. MyPC Jane Doe WORKGROUP 804765696 DA243A-ABA 6415cl NA910 Compaq Presario 06

像这种来自命令的输出(它直接从某个硬件返回信息)仅相当于你拥有的数据。某些信息未由硬件制造商正确配置,因此可能不可用。

列出已安装的修补程序Listing Installed Hotfixes

可以通过使用 Win32_QuickFixEngineering 列出所有已安装的修补程序:

  1. Get-CimInstance -ClassName Win32_QuickFixEngineering -ComputerName .

此类将返回如下所示的修补程序列表:

  1. Source Description HotFixID InstalledBy InstalledOn PSComputerName
  2. ------ ----------- -------- ----------- ----------- --------------
  3. Security Update KB4048951 Administrator 12/16/2017 .

为了使输出更简洁,可能需要排除某些属性。尽管可以使用 Get-CimInstance 的 Property 参数以仅选择 HotFixID,但这样做实际上将返回更多信息,因为默认显示所有元数据:

  1. Get-CimInstance -ClassName Win32_QuickFixEngineering -ComputerName . -Property HotFixID
  1. PSShowComputerName : True
  2. InstalledOn :
  3. Caption :
  4. Description :
  5. InstallDate :
  6. Name :
  7. Status :
  8. CSName :
  9. FixComments :
  10. HotFixID : KB4048951
  11. InstalledBy :
  12. ServicePackInEffect :
  13. PSComputerName : .
  14. CimClass : root/cimv2:Win32_QuickFixEngineering
  15. CimInstanceProperties : {Caption, Description, InstallDate, Name...}
  16. CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties

返回额外数据是因为 Get-CimInstance 中的 Property 参数限制从 WMI 类实例返回的属性,而不限制返回到 Windows PowerShell 的对象。若要减少输出,请使用 Select-Object

  1. Get-CimInstance -ClassName Win32_QuickFixEngineering -ComputerName . -Property HotFixId | Select-Object -Property HotFixId

  1. HotFixId

KB4048951

列出操作系统版本信息Listing Operating System Version Information

Win32_OperatingSystem 类属性包括版本和服务包信息。你可以明确仅选择这些属性,以从 Win32_OperatingSystem 获取版本信息摘要:

  1. Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName . | Select-Object -Property BuildNumber,BuildType,OSType,ServicePackMajorVersion,ServicePackMinorVersion

也可以将通配符用于 Select-Object 的 Property 参数。因为在此处使用以 BuildServicePack 开头的所有属性很重要,所以我们可以将此缩短为下列形式:

  1. Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName . | Select-Object -Property Build*,OSType,ServicePack*
  1. BuildNumber : 16299
  2. BuildType : Multiprocessor Free
  3. OSType : 18
  4. ServicePackMajorVersion : 0
  5. ServicePackMinorVersion : 0

列出本地用户和所有者Listing Local Users and Owner

本地常规用户信息(许可的用户数、当前用户数和所有者名称)可通过选择 Win32_OperatingSystem 类的属性找到。你可以明确选择使属性显示如下:

  1. Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName . | Select-Object -Property NumberOfLicensedUsers,NumberOfUsers,RegisteredUser

使用通配符的更简洁版本是:

  1. Get-CimInstance -ClassName Win32_OperatingSystem -ComputerName . | Select-Object -Property *user*

获取可用磁盘空间Getting Available Disk Space

若要查看本地驱动器的磁盘空间和可用空间,可以使用 Win32_LogicalDisk WMI 类。仅需要查看具有 DriveType 3(WMI 将此值用作固定硬盘)的实例。

  1. Get-CimInstance -ClassName Win32_LogicalDisk -Filter "DriveType=3" -ComputerName .
  2. DeviceID DriveType ProviderName VolumeName Size FreeSpace PSComputerName
  3. -------- --------- ------------ ---------- ---- --------- --------------
  4. C: 3 Local Disk 203912880128 65541357568 .
  5. Q: 3 New Volume 122934034432 44298250240 .
  6. Get-CimInstance -ClassName Win32_LogicalDisk -Filter "DriveType=3" -ComputerName . | Measure-Object -Property FreeSpace,Size -Sum | Select-Object -Property Property,Sum
  7. Property Sum
  8. -------- ---
  9. FreeSpace 109839607808
  10. Size 326846914560

获取登录会话信息Getting Logon Session Information

可通过 Win32_LogonSession WMI 类获取有关与用户相关联的登录会话的常规信息:

  1. Get-CimInstance -ClassName Win32_LogonSession -ComputerName .

获取登录到计算机的用户Getting the User Logged on to a Computer

可以使用 Win32_ComputerSystem 显示已登录到特定计算机系统的用户。此命令将仅返回登录到系统桌面的用户:

  1. Get-CimInstance -ClassName Win32_ComputerSystem -Property UserName -ComputerName .

获取计算机的本地时间Getting Local Time from a Computer

可以通过使用 Win32_LocalTime WMI 类检索指定计算机上的当前本地时间。

  1. Get-CimInstance -ClassName Win32_LocalTime -ComputerName .
  2. Day : 15
  3. DayOfWeek : 4
  4. Hour : 12
  5. Milliseconds :
  6. Minute : 11
  7. Month : 6
  8. Quarter : 2
  9. Second : 52
  10. WeekInMonth : 3
  11. Year : 2017
  12. PSComputerName : .

显示服务状态Displaying Service Status

若要查看指定计算机上所有服务的状态,可以本地使用 Get-Service cmdlet。对于远程系统,可以使用 Win32_Service WMI 类。如果还使用 Select-Object 来筛选 Status、Name 和 DisplayName 的结果,则输出格式将与 Get-Service 的输出格式几乎完全相同:

  1. Get-CimInstance -ClassName Win32_Service -ComputerName . | Select-Object -Property Status,Name,DisplayName

若要完整显示具有极长名称的临时服务的名称,可能需要使用具有 AutoSize 和 Wrap 参数的 Format-Table,用于优化列宽并允许较长名称换行而不是被截断:

  1. Get-CimInstance -ClassName Win32_Service -ComputerName . | Format-Table -Property Status,Name,DisplayName -AutoSize -Wrap