X
X

Select Your Currency

Türk Lirası $ US Dollar
X
X

Select Your Currency

Türk Lirası $ US Dollar

Knowledge Base

How to Change Windows Password?

 

Windows Server Password Change Methods

 

Changing passwords for user accounts on Windows Server is a critical step for both security policies and administrative convenience. Ensuring that accounts accessing the server have strong and regularly updated passwords is the most basic defense against potential attacks.

 

In this article, we will explain how to change Windows Server passwords in three different ways:

  • User changing their own password

  • Administrator changing another user’s password via Control Panel / Computer Management

  • Changing passwords using PowerShell

 

1. User Changing Their Own Password

 

The simplest method is when users change their own passwords.

  1. Press CTRL + ALT + DEL at the same time.

  2. Click Change a Password on the screen that appears.

  3. Enter your current password first, then enter your new password twice.

  4. Click OK to confirm, and your password will be updated.


This method is commonly used, especially for domain users who periodically change their own passwords.

 

2. Control Panel / Computer Management Method

 

If an administrator wants to change another user’s password, this method is ideal.

 

Via Control Panel

 

  1. Open Control PanelUser Accounts from the Start menu.

  2. Click Manage another account.

  3. Select the user whose password you want to change.

  4. Click Change the password.

  5. Enter the new password and complete the process.

 

Via Computer Management

 

  1. Open Computer Management by typing compmgmt.msc in the Start menu.

  2. In the left panel, go to Local Users and GroupsUsers.

  3. Find the user account whose password will be changed.

  4. Right-click the user and select Set Password.

  5. Enter the new password and confirm.


Using this method, both Administrator and other user accounts can have their passwords changed easily.

 

3. Changing Passwords Using PowerShell

 

For advanced administration, PowerShell can be used. This method saves time, especially for administrators managing multiple user accounts.

For example, to change the password for Username:

Set-LocalUser -Name Username -Password (ConvertTo-SecureString "NewPassword123!" -AsPlainText -Force)

This command will assign a new password to the specified user account. It is particularly useful for automation scenarios.

 

Security Recommendations

 

  • Use complex and hard-to-guess combinations when setting passwords.

  • Change passwords regularly.

  • Apply password policies using Group Policy in domain environments.

  • After changing passwords, make sure old passwords are not being used in RDP sessions, service accounts, or shared resources.

Did you find it useful?
(14 times viewed / 0 people found it helpful)

Can't find the information you are looking for?

Create a Support Ticket
Top