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.
Shaswata Das
5c6fe3db62
|
4 years ago | |
---|---|---|
.. | ||
classfac.cpp | 4 years ago | |
maindll.cpp | 4 years ago | |
makefile | 4 years ago | |
makefile.nm | 4 years ago | |
methprov.cpp | 4 years ago | |
methprov.def | 4 years ago | |
methprov.dsp | 4 years ago | |
methprov.dsw | 4 years ago | |
methprov.h | 4 years ago | |
readme.txt | 4 years ago | |
sources | 4 years ago | |
userid.mof | 4 years ago | |
userid.vbs | 4 years ago |
readme.txt
Methods Provider
================
This sample demonstrates the framework necessary to implement a methods provider.
To get the sample working, do the following;
1) Build using NMAKE.
2) Make sure that the classes used by the provider are defined by using the MOF compiler.
Ex; mofcomp userid.mof
3) Register the DLL by using the self registration technique.
Ex; c:>regsvr32 userid.dll
What this provider supports
===========================
This provider supports methods for the class "UserID". The only method
supported in this sample is named GetUserID. Note that the method is marked
as "Static" and should be executed using a path to the class. The mof definition is
[dynamic: ToInstance, provider("UserIDProvider")]class UserID
{
[implemented, static]
void GetUserID([out] string sDomain, [out] string sUser,
[out] string sImpLevel,
[out] string sPrivileges [],
[out] boolean bPrivilegesEnabled []);
};
The method returns the current user credentials of the client.
Using WbemTest application to execute the sample
================================================
To see the provider in action you must use wbemtest application to execute methods
using this provider. The following are directions on how to see the methods provider in
action.
1)type wbemtest at command prompt
ex: c:>wbemtest
2)Connect to root\default
3)Click Execute Method Button
4)Type in the Object Path: In this case "UserID".
5)A default method should appear in the Method box named "GetUserID".
6)Click Execute!
7)The values should be returned in Edit-Out-Parameters.
Using the userid.vbs sample to execute the sample
====================================================
The method provider sample can also be called using the userid.vbs
sample program. Before running it, this provider should be setup first
using the steps listed above.