gpt4 book ai didi

powershell - 无法从 32 位进程访问 Win32_WinSAT

转载 作者:行者123 更新时间:2023-12-02 01:57:34 24 4
gpt4 key购买 nike

当从 x64 进程请求 Win32_WinSAT 时,我得到正确的结果 (WinSATAssessmentState = 1),但是当从 x86 执行时,我得到“结果不可用”(WinSATAssessmentState = 3)

x64 Powershell:

PS C:\Users\alive> gwmi Win32_WinSAT


__GENUS : 2
__CLASS : Win32_WinSAT
__SUPERCLASS :
__DYNASTY : Win32_WinSAT
__RELPATH : Win32_WinSAT.TimeTaken="MostRecentAssessment"
__PROPERTY_COUNT : 8
__DERIVATION : {}
__SERVER : COMPNAME
__NAMESPACE : root\cimv2
__PATH : \\COMPNAME\root\cimv2:Win32_WinSAT.TimeTaken="MostRecentAssessment"
CPUScore : 7,2
D3DScore : 6,3
DiskScore : 7,65
GraphicsScore : 4,6
MemoryScore : 5,9
TimeTaken : MostRecentAssessment
WinSATAssessmentState : 1
WinSPRLevel : 4,6
PSComputerName : COMPNAME

x86 Powershell
PS C:\Users\alive> gwmi Win32_WinSAT


__GENUS : 2
__CLASS : Win32_WinSAT
__SUPERCLASS :
__DYNASTY : Win32_WinSAT
__RELPATH : Win32_WinSAT.TimeTaken="MostRecentAssessment"
__PROPERTY_COUNT : 8
__DERIVATION : {}
__SERVER : COMPNAME
__NAMESPACE : root\cimv2
__PATH : \\COMPNAME\root\cimv2:Win32_WinSAT.TimeTaken="MostRecentAssessment"
CPUScore : 0
D3DScore : 0
DiskScore : 0
GraphicsScore : 0
MemoryScore : 0
TimeTaken : MostRecentAssessment
WinSATAssessmentState : 3
WinSPRLevel : 0
PSComputerName : COMPNAME

是否有任何标志或特殊方法可以从 x86 进程访问此信息?

谢谢。

最佳答案

您的问题在 Requesting WMI Data on a 64-bit Platform .

默认情况下,当存在两个版本的提供程序时,应用程序或脚本会从相应的提供程序接收数据。 32 位提供程序向 32 位应用程序返回数据,包括所有脚本,64 位提供程序向 64 位编译应用程序返回数据。但是,应用程序或脚本可以从非默认提供程序(如果存在)请求数据,方法是通过方法调用上的标志通知 WMI。 __ProviderArchitecture __必需架构字符串标志具有一组由 WMI 处理但未在 SDK 头文件或类型库文件中定义的值。这些值放置在上下文参数中,以向 WMI 发出信号,告知它应该从非默认提供程序请求数据。

我不知道如何使用 PowerShell CmdLets 做到这一点,但您可以使用 .NET Framework(COM 对象封装)中的“System.Management”类。

# Setup the context information
$mContext = New-Object System.Management.ManagementNamedValueCollection
$mContext.Add( "__ProviderArchitecture", 64)
$mContext.Add( "__RequiredArchitecture", $true)

# Setup the Authrntification object
$ConOptions = New-Object System.Management.ConnectionOptions
#$ConOptions.Username = "computername\administrateur" # Should be used for remote access
#$ConOptions.Password = "toto"
$ConOptions.EnablePrivileges = $true
$ConOptions.Impersonation = "Impersonate"
$ConOptions.Authentication = "Default"
$ConOptions.Context = $mContext

# Setup the management scope (change with the computer name for remote access)
$mScope = New-Object System.Management.ManagementScope("\\localhost\root\cimV2", $ConOptions)

$mScope.Connect()

# Query
$queryString = "SELECT * From Win32_WinSAT"
$oQuery = New-Object System.Management.ObjectQuery ($queryString)
$oSearcher = New-Object System.Management.ManagementObjectSearcher ($mScope, $oQuery)
$oSearcher.Get();

我在 Windows 8 中从 32 位和 64 位 PowerShell 执行此脚本,并且两者都有效。

关于powershell - 无法从 32 位进程访问 Win32_WinSAT,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19120578/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com