简体   繁体   English

将多个变量传递给ExecMethod

[英]Passing more than one variable to ExecMethod

I am trying to call wmisetbrightness, but it takes two inputs. 我正在尝试调用wmisetbrightness,但是它需要两个输入。 How do I pass more than one input to ExecMethod? 如何将多个输入传递给ExecMethod? Code snippet below is obviously wrong. 下面的代码段显然是错误的。

// set up to call the WmiSetBrightness Method
BSTR MethodName = SysAllocString(L"WmiSetBrightness");
BSTR ClassName = SysAllocString(L"WmiMonitorBrightnessMethods");

IWbemClassObject* pClass = NULL;
hres = pSvc->GetObject(ClassName, 0, NULL, &pClass, NULL);

IWbemClassObject* pInParamsDefinition = NULL;
hres = pClass->GetMethod(MethodName, 0, 
    &pInParamsDefinition, NULL);

IWbemClassObject* pClassInstance = NULL;
hres = pInParamsDefinition->SpawnInstance(0, &pClassInstance);

// Create the values for the in parameters
VARIANT varCommand;
varCommand.vt = VT_UI8;
varCommand.ullVal = 30;
//// Store the value for the in parameters
hres = pClassInstance->Put(L"CommandLine", 0, &varCommand, 0);

// Execute Method
IWbemClassObject* pOutParams = NULL;
hres = pSvc->ExecMethod(ClassName, MethodName, 0,
NULL, pClassInstance, &pOutParams, NULL);

edit: WmiSetBrightness takes two variables: 编辑:WmiSetBrightness需要两个变量:

uint32 WmiSetBrightness( uint64 Timeout, uint8 Brightness ); uint32 WmiSetBrightness(uint64 Timeout,uint8 Brightness);

the above code only passes the first input parameter, and I dont know how to modify it to pass both parameters. 上面的代码仅传递第一个输入参数,而我不知道如何修改它以传递两个参数。

Full code here: 完整代码在这里:

#define _WIN32_DCOM

#include <iostream>
using namespace std;
#include <comdef.h>
#include <Wbemidl.h>

# pragma comment(lib, "wbemuuid.lib")

int main(int iArgCnt, char ** argv)
{
HRESULT hres;

// Step 1: --------------------------------------------------
// Initialize COM. ------------------------------------------

hres =  CoInitializeEx(0, COINIT_MULTITHREADED); 
if (FAILED(hres))
{
    cout << "Failed to initialize COM library. Error code = 0x" 
         << hex << hres << endl;
    return 1;                  // Program has failed.
}

// Step 2: --------------------------------------------------
// Set general COM security levels --------------------------
// Note: If you are using Windows 2000, you must specify -
// the default authentication credentials for a user by using
// a SOLE_AUTHENTICATION_LIST structure in the pAuthList ----
// parameter of CoInitializeSecurity ------------------------

hres =  CoInitializeSecurity(
    NULL, 
    -1,                          // COM negotiates service
    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;
    CoUninitialize();
    return 1;                      // Program has failed.
}

// Step 3: ---------------------------------------------------
// 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;
    CoUninitialize();
    return 1;                 // Program has failed.
}

// Step 4: ---------------------------------------------------
// Connect to WMI through the IWbemLocator::ConnectServer method

IWbemServices *pSvc = NULL;

// Connect to the local root\cimv2 namespace
// and obtain pointer pSvc to make IWbemServices calls.
hres = pLoc->ConnectServer(
    _bstr_t(L"ROOT\\wmi"), 
    NULL,
    NULL, 
    0, 
    NULL, 
    0, 
    0, 
    &pSvc
);

if (FAILED(hres))
{
    cout << "Could not connect. Error code = 0x" 
         << hex << hres << endl;
    pLoc->Release();     
    CoUninitialize();
    return 1;                // Program has failed.
}

cout << "Connected to ROOT\\CIMV2 WMI namespace" << endl;


// Step 5: --------------------------------------------------
// Set security levels for 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;
    pSvc->Release();
    pLoc->Release();     
    CoUninitialize();
    return 1;               // Program has failed.
}


///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// set up to call the WmiSetBrightness Method
BSTR MethodName = SysAllocString(L"WmiSetBrightness");
BSTR ClassName = SysAllocString(L"WmiMonitorBrightnessMethods");

IWbemClassObject* pClass = NULL;
hres = pSvc->GetObject(ClassName, 0, NULL, &pClass, NULL);

IWbemClassObject* pInParamsDefinition = NULL;
hres = pClass->GetMethod(MethodName, 0, 
    &pInParamsDefinition, NULL);

IWbemClassObject* pClassInstance = NULL;
hres = pInParamsDefinition->SpawnInstance(0, &pClassInstance);

 VARIANT var1;
 VariantInit(&var1);

 V_VT(&var1) = VT_BSTR;
 V_BSTR(&var1) = SysAllocString(L"0"); 
 hres = pClassInstance->Put(L"Timeout", 0, &var1, CIM_UINT32); //CIM_UINT64

 VARIANT var2;
 VariantInit(&var2);

 V_VT(&var2) = VT_BSTR;
 V_BSTR(&var2) = SysAllocString(L"30"); 
 hres = pClassInstance->Put(L"Brightness", 0, &var2, CIM_UINT8); 

// Execute Method
IWbemClassObject* pOutParams = NULL;
hres = pSvc->ExecMethod(ClassName, MethodName, 0,
NULL, pClassInstance, &pOutParams, NULL);


if (FAILED(hres))
{
    cout << "Could not execute method. Error code = 0x" 
         << hex << hres << endl;
    //VariantClear(&varCommand);
    SysFreeString(ClassName);
    SysFreeString(MethodName);
    pClass->Release();
    pInParamsDefinition->Release();
    pOutParams->Release();
    pSvc->Release();
    pLoc->Release();     
    CoUninitialize();
    return 1;               // Program has failed.
}

// To see what the method returned,
// use the following code.  The return value will
// be in &varReturnValue
VARIANT varReturnValue;
hres = pOutParams->Get(_bstr_t(L"ReturnValue"), 0, 
    &varReturnValue, NULL, 0);


// Clean up
//--------------------------
// VariantClear(&varCommand);
VariantClear(&varReturnValue);
SysFreeString(ClassName);
SysFreeString(MethodName);
pClass->Release();
pInParamsDefinition->Release();
pOutParams->Release();
pLoc->Release();
pSvc->Release();
CoUninitialize();
return 0;
}

Try this, which supposedly works per info here . 试试这个,据信这里每个信息都可以 Apparently the docs are misleading on this API. 显然,该文档误导了该API。

 VARIANT var1;
 VariantInit(&var1);

 V_VT(&var1) = VT_BSTR;
 V_BSTR(&var1) = SysAllocString(L"0"); 
 hr = pClassInstance->Put(L"Timeout", 0, &var1, CIM_UINT32); //CIM_UINT64

 VARIANT var2;
 VariantInit(&var2);

 V_VT(&var2) = VT_BSTR;
 V_BSTR(&var2) = SysAllocString(L"30"); 
 hr = pClassInstance->Put(L"Brightness", 0, &var2, CIM_UINT8); 

I googled by right-clicking stuff in your code and selecting "Search google for...". 我通过右键单击代码中的内容并选择“在Google中搜索...”来搜索Google。

That spit out the documentation of SWbemServices.ExecMethod . 这吐出了SWbemServices.ExecMethod文档

Apparently the third argument, where you're specifying 0, can be an SWbemObject specifying the input paramters to the method. 显然,您要在其中指定0的第三个参数可以是一个SWbemObject指定方法的输入参数。

Anyway, study the documentation. 无论如何,请阅读文档。

Try things out (perhaps in script first?). 试试看(也许首先在脚本中?)。

Cheers & hth. 干杯和健康。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM