Main Content

setUserName

Set user name for target computer

Since R2022b

    Description

    example

    setUserName(tg, Username) sets the specified user name for the target computer.

    Examples

    collapse all

    Create a target object and add a target with name LinuxTarget1 containing user name user1 and password myPassword.

    tgs = linux.Targets();
    tg = tgs.addTarget("LinuxTarget1", "178.10.10.1", "user1", "myPassword");

    Set the user name.

    tg.setUserName("myUserName");

    Input Arguments

    collapse all

    Object represents a target computer. Use the object to establish the connection with Linux target, to deploy the applications on Linux target, and perform several other actions.

    Example: myTargetHandle

    Specify the user name for the selected target.

    Example: "myUserName"

    Version History

    Introduced in R2022b