As a regular user of Remote Desktop sessions, you may have been confronted with the case to change your password. Control-Alt-Delete (CTRL-ALT-DEL) doesn’t allow you to change the password in the remote session, but instead gives you a menu on your actual host
Change password in Remote Desktop
There are many ways to change your password. Of course, when you’re working on your physical computer, you may just hit CTRL-ALT-DEL, but this won’t work in an RDP session
CTRL-ALT-END
Sometimes (but not always), CTRL-ALT-END helps you “ctrl-alt-delete” the session to change your password in the remote session. CTRL-ALT-END is the equivalent to CTRL-ALT-DELETE in RDP. However it depends on the OS-version session settings whether this works or not.
On screen keyboard
The On Screen Keyboard (OSK) is a virtual keyboard on your screen. This works in Windows Server 2012 / Windows 7 and higher. To reset your password with the OSK, follow these steps:
- Click Start
- Type osk and hit enter to open the on screen keyboard.
If this doesn’t work, press Windows+R to open your Run Command window. Type osk and click OK - Press and Hold CTRL-ALT keys on your physical keyboard and then click on the DEL key in the virtual keyboard (on screen)
- Minimize the OSK
- Click Change a password.
Run the shell
You can directly launch the shell to get the Windows Security Options displayed. To do so, open the Run-box or open a command prompt and copy-paste:
C:\Windows\explorer.exe shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}
Run a VBS-script
This one is nice too. Copy paste the lines below to a Notepad and save the file as securityoptions.vbs . Then open/run/execute the VBS. It will launch the Windows Security Options screen to change the password
************************************
Set objShell = CreateObject(“Shell.Application”)
objShell.WindowsSecurity
***********************************
ALTGR-END
In case you have a keyboard with the ALTGR-key, you may also use ALTGR+END to simulate CTRL-ALT-DELETE. I believe German keyboards in particuar have this key.
Reset your password in an RDP session
In contrast to changing a password, resetting a password does not require you to remember the current password. Instead you just overwrite the existing password (if any) and set a new password.
Active Directory Users and Computers
When logged on to a computer that has active directory tools installed, you may use Active Directory Users and Computers to reset the password . You need user account privileges to do so, however.
- Open Active Directory Users and Computers from your startmenu (or quicker: Start -> Run -> dsa.msc)
- Localize the account (tip: at top level, right-click and choose Find… )
- Right-click the account, and choose Reset Password…
Net user
Assuming it’s a local user (so NOT a domain user account), you can use net user to change a users’ password. To do so:
- Click Start -> Run (or press Win+R)
- Type something like “net user $username $password”. I.e. if the user account is named Peter, you could reset its password by typing: net user Peter P@55w0rd.
Powershell: Set-ADAccountPassword
In case of a domain user account, you may use the Set-ADAccountPassword cmdlet in Powershell. Note that the Active Directory module must be loaded.
Set-ADAccountPassword -Identity Peter -NewPassword (Read-Host -Prompt “Provide New Password” -AsSecureString) -Reset
Powershell: Set-LocalUser
In case of a local user, you may use the Set-LocalUser cmdlet in Powershell to reset a local users’ password
Get-LocalUser ‘Peter’ | Set-LocalUser -Password (Read-Host -Prompt “Provide New Password” -AsSecureString)
thank you so much for this trick
Ctrl + Alt + end works . Many Thanks !
I tried OSK but pressing with the mouse Ctrl, Alt and Del. Not OK. Only when you press physically Ctrl&Alt and use OSK for Del is OK.
OSK did the trick, thank you
Thank you all for suggesting CTRL-ALT-END solution. I never heard or read this anywhere else. It worked. Thank you thank you and Thank you.
CTR-ALT-END, such an easy solution to changing a password on a workstation that I had to RDP to. Those dummies at MS can not document such a short and easy solution. Thank you people at at itexperience. I’m holding onto your web page for the remaining year I have at working and will share it with coworkers and customers.
thanks you
Thanks!!! Ctrl-Del-End worked for me..
THANK YOU THANK YOU THANK YOU
Nice Post, thanks for sharing
this VBS does not work on my win8:
Set objShell = CreateObject(“Shell.Application”)
objShell.WindowsSecurity
error message-invalid character.
Don’t copy quotation marks from a website, type them manually.
This is good advice but I was in an RDP within another RDP as we do support from home. This worked for me:
https://answers.microsoft.com/en-us/windows/forum/all/user-tile/8faf8cb6-5a8c-43cf-abf6-00de00a80fe5
Hi Nick, thank you for your reply. I believe you’re referring to the On Screen Keyboard. That should also work for RDP sessions within RDP sessions.
https://www.itexperience.net/10-ways-to-change-password-in-remote-desktop-session/#On_screen_keyboard
Thanks a lot. CTRL-ALT-END option worked straight away for me.
Thankyou, first option worked straight away! :)
Thank you, it really helpful
Thank you so much
Thanks for this blog. The OSK option did the trick for me.
+100 to carma
Why are they so many typos?
> Localize the account (tip: at top level, right-click and choose Find… )
How do you “localize” an account????
How is that a typo? Isn’t that US Englishing spelling?
explorer shell:::{2559a1f2-21d7-11d4-bdaf-00c04f60b9f0}