can anyone tell me how can I (programatically) add the current/selected user to a group (like power user, backup opetarors)
any function/info/code is welcomed
|
feedback
|
|
Well if all you want to do is add a user to a local group then you want the NetLocalGroupAddMembers API (to do it in C anyway). As a simple example:
The group name is just the textual name of the group on the system which you can determine programatically using something like:
Adding to global group you will need to instead use the NetGroupAddUser API. | |||
|
feedback
|
|
Here you an example using the Jedi JCL
Bye. | |||
|
feedback
|
|
You can use the NetLocalGroupAddMembers function in the Windows API. The JEDI API Library includes a Lan Manager Access API interface Unit, for use with Delphi. | ||||
|
feedback
|