通过powershell进行WMI查询执行

时间:2018-05-14 12:25:02

标签: powershell wmi-query

当我从WMI浏览器和powershell

执行WMI查询时,面对以下变化

从WMI浏览器

查询:

Select Caption  from Win32_TimeZone

输出:

Caption                                      |  StandardName
[UTC+530]Chennai,Kolkata, Mumbai, New Delhi     Indian Standard Time  

来自Powershell:

查询:

Get-WmiObject -query  "select caption from Win32_Timezone"

输出继电器: enter image description here

WMI浏览器中StandardName来自哪里?

1 个答案:

答案 0 :(得分:0)

这会给你相同的结果:

Get-WmiObject Win32_Timezone | Select Caption,StandardName

或删除StandardName,如果不需要。

Get-WmiObject Win32_Timezone | Select Caption