- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想检索知道其 SID 的用户 AccountName。SID 是使用 WMI 查询获取的:Select * from Win32_UserProfile
,我正在尝试使用以下查询获取用户 AccountName:
Select * from Win32_SID where SID='S-1-5-21-3949351935-1180888718-2463404063-9346'
ExecQuery
方法成功,但 IEnumWbemClassObject
中的 Next
方法失败并出现错误:H80041024 (wbemErrProviderNotCapable)。
任何帮助都会很棒。谢谢。
最佳答案
作为MSDN
文档指出,Win32_SID
WMI 类无法枚举。
因此,您不能使用 ExecQuery 方法,而是使用 IWbemServices::GetObject
函数传递正确的 WMI object path
.类似于 Win32_SID.SID='S-1-5-82-1036420768-1044797643-1061213386-2937092688-4282445334'
试试这个例子
#include "stdafx.h"
#define _WIN32_DCOM
#include <iostream>
using namespace std;
#include <comdef.h>
#include <Wbemidl.h>
# pragma comment(lib, "wbemuuid.lib")
#pragma argsused
int main(int argc, char* argv[])
{
BSTR strNetworkResource;
strNetworkResource = L"\\\\.\\root\\CIMV2";
// Initialize COM. ------------------------------------------
HRESULT hres;
hres = CoInitializeEx(0, COINIT_MULTITHREADED);
if (FAILED(hres))
{
cout << "Failed to initialize COM library. Error code = 0x" << hex << hres << endl;
cout << _com_error(hres).ErrorMessage() << endl;
cout << "press enter to exit" << endl;
cin.get();
return 1; // Program has failed.
}
// Set general COM security levels --------------------------
hres = CoInitializeSecurity(
NULL,
-1, // COM authentication
NULL, // Authentication services
NULL, // Reserved
RPC_C_AUTHN_LEVEL_DEFAULT, // Default authentication
RPC_C_IMP_LEVEL_IMPERSONATE, // Default Impersonation
NULL, // Authentication info
EOAC_NONE, // Additional capabilities
NULL // Reserved
);
if (FAILED(hres))
{
cout << "Failed to initialize security. Error code = 0x" << hex << hres << endl;
cout << _com_error(hres).ErrorMessage() << endl;
CoUninitialize();
cout << "press enter to exit" << endl;
cin.get();
return 1; // Program has failed.
}
// Obtain the initial locator to WMI -------------------------
IWbemLocator *pLoc = NULL;
hres = CoCreateInstance(CLSID_WbemLocator, 0, CLSCTX_INPROC_SERVER, IID_IWbemLocator, (LPVOID *) &pLoc);
if (FAILED(hres))
{
cout << "Failed to create IWbemLocator object." << " Err code = 0x" << hex << hres << endl;
cout << _com_error(hres).ErrorMessage() << endl;
CoUninitialize();
cout << "press enter to exit" << endl;
cin.get();
return 1; // Program has failed.
}
// Connect to WMI through the IWbemLocator::ConnectServer method
IWbemServices *pSvc = NULL;
hres = pLoc->ConnectServer(
_bstr_t(strNetworkResource), // Object path of WMI namespace
NULL, // User name. NULL = current user
NULL, // User password. NULL = current
0, // Locale. NULL indicates current
NULL, // Security flags.
0, // Authority (e.g. Kerberos)
0, // Context object
&pSvc // pointer to IWbemServices proxy
);
if (FAILED(hres))
{
cout << "Could not connect. Error code = 0x" << hex << hres << endl;
cout << _com_error(hres).ErrorMessage() << endl;
pLoc->Release();
CoUninitialize();
cout << "press enter to exit" << endl;
cin.get();
return 1; // Program has failed.
}
cout << "Connected to root\\CIMV2 WMI namespace" << endl;
// Set security levels on the proxy -------------------------
hres = CoSetProxyBlanket(
pSvc, // Indicates the proxy to set
RPC_C_AUTHN_WINNT, // RPC_C_AUTHN_xxx
RPC_C_AUTHZ_NONE, // RPC_C_AUTHZ_xxx
NULL, // Server principal name
RPC_C_AUTHN_LEVEL_CALL, // RPC_C_AUTHN_LEVEL_xxx
RPC_C_IMP_LEVEL_IMPERSONATE, // RPC_C_IMP_LEVEL_xxx
NULL, // client identity
EOAC_NONE // proxy capabilities
);
if (FAILED(hres))
{
cout << "Could not set proxy blanket. Error code = 0x" << hex << hres << endl;
cout << _com_error(hres).ErrorMessage() << endl;
pSvc->Release();
pLoc->Release();
CoUninitialize();
cout << "press enter to exit" << endl;
cin.get();
return 1; // Program has failed.
}
// Use the IWbemServices pointer to make requests of WMI ----
IWbemClassObject *pclsObj = NULL;
hres = pSvc->GetObject(L"Win32_SID.SID='S-1-5-82-1036420768-1044797643-1061213386-2937092688-4282445334'", 0, NULL, &pclsObj, NULL);
if (FAILED(hres))
{
cout << "GetObject failed" << " Error code = 0x" << hex << hres << endl;
cout << _com_error(hres).ErrorMessage() << endl;
pSvc->Release();
pLoc->Release();
CoUninitialize();
cout << "press enter to exit" << endl;
cin.get();
return 1; // Program has failed.
}
else
{
VARIANT vtProp;
HRESULT hr = pclsObj->Get(L"AccountName", 0, &vtProp, 0, 0);// String
if (!FAILED(hr))
{
if ((vtProp.vt==VT_NULL) || (vtProp.vt==VT_EMPTY))
wcout << "AccountName : " << ((vtProp.vt==VT_NULL) ? "NULL" : "EMPTY") << endl;
else
wcout << "AccountName : " << vtProp.bstrVal << endl;
}
VariantClear(&vtProp);
pclsObj->Release();
pclsObj=NULL;
}
// Cleanup
pSvc->Release();
pLoc->Release();
if (pclsObj!=NULL)
pclsObj->Release();
CoUninitialize();
cout << "press enter to exit" << endl;
cin.get();
return 0; // Program successfully completed.
}
关于C++ WMI 获取 AccountName 知道用户 SID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14482329/
我有一个BankAccount类,由accountNo和accountName的“ Getter and Setter”组成。另外,我有一个JFrameNewAccount,它将添加新帐户并将其保存在
我显然不够聪明,无法自己解决这个问题。即使读完the very similar question ,我距离解决这个问题还很远。我确信 stackoverflow 社区将再次拯救我。 我正在尝试更新 S
我想检索知道其 SID 的用户 AccountName。SID 是使用 WMI 查询获取的:Select * from Win32_UserProfile,我正在尝试使用以下查询获取用户 Accoun
我正在尝试使用“Add-AzureRmServiceFabricNodeType”命令将新的 nodeType 添加到现有的服务结构群集。这是我的命令: Add-AzureRmServiceFabri
我怎样才能得到 DomainName\AccountName 作为 .NET Framework 的字符串? 最佳答案 System.Security.Principal.WindowsIdentit
我即将使用SecKeychainAddGenericPassword在我的 ios-app 中存储一堆 protected 信息,而我所需要的只是一个“安全”的键值存储。 “安全”是指信息不应轻易被篡
当使用 invalidateAuthToken 使来自 AccountManager 的授权 token 失效时, 问题 1:为什么函数需要帐户的 Type 而使用帐户的 Name 似乎更有意义? 问
我正在使用下面的 terraform 代码部署 Azure 函数应用程序。 resource "azurerm_function_app" "function_app" { name
我正在使用下面的 terraform 代码部署 Azure 函数应用程序。 resource "azurerm_function_app" "function_app" { name
我是一名优秀的程序员,十分优秀!