Welcome
UserMgmt.AddUser
UserMgmt.DelUser
UserMgmt.ChangePassword
UserMgmt.AddGroupMembers
UserMgmt.DelGroupMembers
UserMgmt.UserExists
|
UserMgmt.AddUser ( |
(string) Username = "Guest", (string) Password = "Password" ) |
Create's a new user account on the local machine.
(string) The name for the new user account.
(string) The password for the new user account.
This action dose not return any value.
|
UserMgmt.DelUser ( |
(string) Username = "Guest" ) |
Delete's a user account on the local machine.
(string) The name of the user account to delete.
This action dose not return any value.
|
UserMgmt.ChangePassword ( |
(string) Username = "Guest", (string) Old Password = "OldPassword", (string) New Password = "NewPassword" ) |
Changes the user's password for their account.
(string) The name of the user account.
(string) The old password for the user account.
(string) The new password for the user account.
This action dose not return any value.
|
UserMgmt.AddGroupMembers ( |
(string) Group = "Administrators", (string) Username = "Guest" ) |
Adds users to the specified group.
(string) The name of the group in which to add members.
(string) The name of the user account in which to add to the group.
This action dose not return any value.
|
UserMgmt.DelGroupMembers ( |
(string) Group = "Administrators", (string) Username = "Guest" ) |
Delete's users from the specified group.
(string) The name of the group in which to add members.
(string) The name of the user account in which to add to the group.
This action dose not return any value.
|
UserMgmt.UserExists ( |
(string) Username = "Guest", (string) Password = "Password" ) |
Check's to see if the specified user account exists.
(string) The name of user account to check for.
(string) The password of the user account to check for.[For Security]
This action dose not return any value.
Made with Action Plugin Compiler