| ClientUserClone Method (String, String, String, String, String, String, Boolean) | 
            Adds a new user with the provided attributes by cloning the specified original user.
            
 
Namespace: MOVEit.DMZ.APIAssembly: MOVEit.DMZ.API (in MOVEit.DMZ.API.dll) Version: 9.0.0.0
Syntaxpublic bool UserClone(
	string OrigUsername,
	string NewUsername,
	string Password,
	string RealName,
	string Email,
	string Notes,
	bool ForceChangePassword
)
Public Function UserClone ( 
	OrigUsername As String,
	NewUsername As String,
	Password As String,
	RealName As String,
	Email As String,
	Notes As String,
	ForceChangePassword As Boolean
) As Boolean
public:
bool UserClone(
	String^ OrigUsername, 
	String^ NewUsername, 
	String^ Password, 
	String^ RealName, 
	String^ Email, 
	String^ Notes, 
	bool ForceChangePassword
)
Parameters
- OrigUsername
 - Type: SystemString
Username of user to clone. - NewUsername
 - Type: SystemString
Username of the new user. - Password
 - Type: SystemString
Password of the new user. - RealName
 - Type: SystemString
Display name of the new user. - Email
 - Type: SystemString
Email address of the new user. - Notes
 - Type: SystemString
Any notes to be added with the new user. - ForceChangePassword
 - Type: SystemBoolean
When true, the user will be required to change their password on their first login. 
Return Value
Type: 
Booleantrue if successful; otherwise, 
false.
See Also