0

我试图为“win32_computersystem”Get-WmiObject 及其属性找到 64 位版本的等价物?我一直在寻找但找不到它。任何建议,将不胜感激..

function GetStatus ($system = $_.name) {
        $userlogon = $null
        $userlogon= gwmi -Class win32_computersystem -ComputerName $system | select -ExpandProperty username -ErrorAction Stop
        }

谢谢,

米奇

4

1 回答 1

2

来自http://msdn.microsoft.com/en-us/library/aa390789.aspx

Generally, provider writers do not include both 32-bit and 64-bit versions of a
provider in the same operating system. If no 64-bit provider exists, a 32-bit provider 
can continue to run through the facilities of WOW64

然后您可以win32_computersystem在 x64 操作系统中使用。

在这里,您可以找到一个有用的脚本来从 x32 操作系统远程检索 x64 操作系统的原始(不是 wow64)注册表值。

于 2013-04-23T07:14:25.600 回答