Querying/Manipulating Active Directory with C++
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Does anyone have any good articles on doing these 2 things with c/c++? I see many articles for c# and VB. I would like to do simple everyday tasks but faster without the need of accessing AD Users and computers everytime. Thanks
You can use the Win32 functions
GetCurrentDirectory
andSetCurrentDirectory
or the CRT functions_tgetdcwd
and_tchdir
.Steve