58 Part II: WMI Queries and Events
Set objWMIService=GetObject("winmgmts:\\" & strComputer & wmiNS)
objWMIService.Security_.ImpersonationLevel = 4
In the preceding code, the first line contains the normal moniker to make the connection to
WMI. Then you use strComputer and wmiNS to specify the target computers and target
namespace, respectively. Because you have not specified an impersonation level, you are using
the default Impersonate security setting. On the next line, use the handle that came back from
the GetObject method that was assigned to objWMIService and define the ImpersonationLevel to
be equal to 4, for Delegate (see Table 3-1). Obviously, you could define a constant and set it to
a value of 4; then substitute the constant valu ...