You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.2 KiB
94 lines
2.2 KiB
// SomFilterManager.cpp : Implementation of CSomFilterManager
|
|
#include "stdafx.h"
|
|
#include <wbemidl.h>
|
|
#include "resource.h"
|
|
#include "defines.h"
|
|
#include "ntdmutils.h"
|
|
#include "SchemaManager.h"
|
|
#include "SomFilterManager.h"
|
|
#include "SomFilterMgrDlg.h"
|
|
|
|
extern CSomFilterManagerDlg * g_pFilterManagerDlg;
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSomFilterManager
|
|
|
|
CSomFilterManager::CSomFilterManager()
|
|
{
|
|
m_hWnd = NULL;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
CSomFilterManager::~CSomFilterManager()
|
|
{
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
STDMETHODIMP CSomFilterManager::ConnectToWMI()
|
|
{
|
|
HRESULT hr;
|
|
CComPtr<IWbemLocator>pIWbemLocator;
|
|
|
|
NTDM_BEGIN_METHOD()
|
|
|
|
m_pIWbemServices = NULL;
|
|
|
|
// create the webm locator
|
|
NTDM_ERR_MSG_IF_FAIL(CoCreateInstance(CLSID_WbemLocator, 0, CLSCTX_INPROC_SERVER,
|
|
IID_IWbemLocator, (LPVOID *) &pIWbemLocator));
|
|
|
|
NTDM_ERR_MSG_IF_FAIL(pIWbemLocator->ConnectServer( _T("root\\policy"),
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
0,
|
|
NULL,
|
|
NULL,
|
|
&m_pIWbemServices));
|
|
|
|
NTDM_ERR_MSG_IF_FAIL(CoSetProxyBlanket(m_pIWbemServices, RPC_C_AUTHN_WINNT, RPC_C_AUTHZ_NONE, NULL,
|
|
RPC_C_AUTHN_LEVEL_CONNECT, RPC_C_IMP_LEVEL_IMPERSONATE ,
|
|
NULL, EOAC_NONE));
|
|
|
|
|
|
|
|
NTDM_END_METHOD()
|
|
|
|
// cleanup
|
|
|
|
return hr;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
STDMETHODIMP CSomFilterManager::RunManager(HWND hwndParent, VARIANT *vSelection)
|
|
{
|
|
HRESULT hr;
|
|
|
|
NTDM_BEGIN_METHOD()
|
|
|
|
m_hWnd = hwndParent;
|
|
|
|
NTDM_ERR_IF_FAIL(ConnectToWMI());
|
|
|
|
g_pFilterManagerDlg = new CSomFilterManagerDlg(this);
|
|
DialogBox(_Module.GetResourceInstance(), MAKEINTRESOURCE(IDD_SOM_FILTER_MANAGER), (HWND)hwndParent, SomFilterManagerDlgProc);
|
|
|
|
NTDM_END_METHOD()
|
|
|
|
// cleanup
|
|
NTDM_DELETE_OBJECT(g_pFilterManagerDlg);
|
|
|
|
return hr;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
STDMETHODIMP CSomFilterManager::SetMultiSelection(VARIANT_BOOL vbValue)
|
|
{
|
|
// TODO: Add your implementation code here
|
|
|
|
return S_OK;
|
|
}
|