'Administrators'=>'Administrators,Administrators have complete and unrestricted access to the computer/domain',
'Users'=>'Users,Users are prevented from making accidental or intentional system-wide changes. Thus, Users can run certified applications, but not most legacy applications',
'Remote Desktop Users'=>'Remote Desktop Users,Members in this group are granted the right to logon remotely'
);
#
# Add a new group
#
sub os_groupadd($$)
{
my($group,$gid)=@_;
$daGroups{$gid}="$group,group description";
return0;
}
#
# Delete an old group
#
sub os_groupdel($)
{
#RDC Right now we are doing nothing, The Addusers.exe program that I am currently using to add users
# does not support removing groups.
# my($group) = @_;
# return system("$GROUPDEL $group");
}
#
# Remove a user account.
#
sub os_userdel($)
{
#RDC Right now we are doing nothing, The Addusers.exe program that I am currently using to add users
# does not support removing users.
# my($login) = @_;
# return system("$USERDEL $login");
}
#
# Modify user group membership.
#
sub os_usermod($$$$$$)
{
#RDC MAJOR ERROR!!! Right now this function just silently fails. It should at least report a error that the