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.
99 lines
2.6 KiB
99 lines
2.6 KiB
#include "precomp.h"
|
|
#include <commain.h>
|
|
#include <clsfac.h>
|
|
#include <TChar.h>
|
|
#include "ClassFac.h"
|
|
#include "ScriptKiller.h"
|
|
#include "script.h"
|
|
#include "StrSafe.h"
|
|
|
|
const CLSID CLSID_WbemActiveScriptConsumer =
|
|
{0x266c72e7,0x62e8,0x11d1,{0xad,0x89,0x00,0xc0,0x4f,0xd8,0xfd,0xff}};
|
|
|
|
class CMyServer : public CComServer
|
|
{
|
|
public:
|
|
#ifdef ENABLE_REMOTING
|
|
void RegisterMe(CLSID clsID, WCHAR* name)
|
|
{
|
|
WCHAR wcID[128];
|
|
WCHAR szKeyName[128];
|
|
HKEY hKey;
|
|
|
|
// open/create registry entry under CLSID
|
|
// not checking return codes of string functions when all sizes are known at compile time
|
|
StringFromGUID2(clsID, wcID, 128);
|
|
StringCchCopyW(szKeyName, 128, TEXT("SOFTWARE\\Classes\\CLSID\\"));
|
|
StringCchCatW(szKeyName, 128, wcID);
|
|
RegCreateKey(HKEY_LOCAL_MACHINE, szKeyName, &hKey);
|
|
|
|
// set AppID
|
|
RegSetValueEx(hKey, L"AppID", 0, REG_SZ, (BYTE*)wcID, 2*(wcslen(wcID) +1));
|
|
RegCloseKey(hKey);
|
|
|
|
// make appID entry w/ DLLSurrogate value
|
|
StringCchCopyW(szKeyName, 128, TEXT("SOFTWARE\\Classes\\APPID\\"));
|
|
StringCchCatW(szKeyName, 128, wcID);
|
|
RegCreateKey(HKEY_LOCAL_MACHINE, szKeyName, &hKey);
|
|
|
|
// and a nice name
|
|
RegSetValueEx(hKey, NULL, 0, REG_SZ, (BYTE*)name, 2*(wcslen(name) +1));
|
|
RegCloseKey(hKey);
|
|
}
|
|
|
|
|
|
virtual void Register()
|
|
{
|
|
RegisterMe(CLSID_WbemActiveScriptConsumer, L"Microsoft WBEM Active Scripting Event Consumer Provider");
|
|
}
|
|
|
|
void UnregisterMe(CLSID clsID)
|
|
{
|
|
WCHAR wcID[128];
|
|
HKEY hKey;
|
|
|
|
if (ERROR_SUCCESS == RegOpenKey(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Classes\\APPID\\"), &hKey))
|
|
{
|
|
if (0 != StringFromGUID2(clsID, wcID, 128))
|
|
{
|
|
RegDeleteKey(hKey, wcID);
|
|
}
|
|
RegCloseKey(hKey);
|
|
}
|
|
|
|
}
|
|
|
|
virtual void Unregister()
|
|
{
|
|
UnregisterMe(CLSID_WbemActiveScriptConsumer);
|
|
}
|
|
|
|
#endif // ENABLE_REMOTING
|
|
|
|
|
|
protected:
|
|
HRESULT Initialize()
|
|
{
|
|
g_scriptKillerTimer.Initialize(GetLifeControl());
|
|
|
|
WMIScriptClassFactory* pFact;
|
|
pFact = new WMIScriptClassFactory(GetLifeControl());
|
|
|
|
if ( pFact == NULL )
|
|
{
|
|
return WBEM_E_OUT_OF_MEMORY;
|
|
}
|
|
|
|
HRESULT hr;
|
|
hr = AddClassInfo( CLSID_WbemActiveScriptConsumer,
|
|
pFact,
|
|
_T("Active Scripting Event Consumer Provider"),
|
|
TRUE );
|
|
|
|
if ( FAILED(hr) )
|
|
return hr;
|
|
|
|
return S_OK;
|
|
}
|
|
} g_Server;
|
|
|