views:

34

answers:

1

Hi

Given that I am on a workstation, that is inside a Windows Server domain. In my data, I have the login name of the operator who has created the data.

When I print a presentation of this data, I want to display the first and last name of this operator, which may be logged on another workstation of the domain... or even could even not be logged at all.

Do you have any clue if I can acheive this, and how ?

In advance thx.

+1  A: 

The Win32_UserAccount WMI class, has a FullName property which sounds like it might be a possibility.

Maybe a query like:

SELECT * FROM Win32_UserAccount WHERE Name='username'

And then you can query the results from that query for the FullNames.

This MSDN page has information about using WMI from C++: WMI C++ Application Examples

ho1