Change Password for a User
  • 10 Oct 2024
  • 1 読む分
  • PDF

Change Password for a User

  • PDF

The content is currently unavailable in Ja - 日本語. You are viewing the default English version.
記事の要約

The following script helps IT Admins to change the password for a local user on Linux machines.

  1. Copy and save the contents below to a UTF-8 editor like notepad++ OR Sublime Text in Windows or gedit in Ubuntu.

    1. If you are using notepad++ then use the bottom right panel to change the type to Unix (LF).

  2. Or click here to download the file.

    #!/bin/bash
    
    # User whose password need to be changed
    username="SET_USERNAME"
    
    #
    # New Password. 
    # Please ensure this password complies with password policy that is 
    # set on device
    password="NEW_PASSWORD"
    
    echo "$username:$password" | chpasswd
    
    echo "Password changed for user: $username"
  3. Replace the below Placeholders in the script before uploading it on the dashboard:

    1. SET_USERNAME: Username for which the password has to be changed

    2. NEW_PASSWORD: New password for the user

  4. Follow our guide to upload & publish the script using Scalefusion Dashboard.

Notes:

  1. Some of the scripts and their contents are sourced from internet and yes, our new friend ChatGPT.

  2. Please validate the scripts on a test machine before deploying them on all your managed devices.

  3. Scalefusion has tested these scripts, however Scalefusion will not be responsible for any loss of data or system malfunction that may arise due to the usage of these scripts.


この記事は役に立ちましたか?