How I can check that I have a password for login to my notebook

0

How I can check that I have a password for login to my notebook, but no using method to log out and log in to see if it requires password.

AleksandrB

Posted 2018-09-25T07:13:12.393

Reputation: 21

Try RunAs to start any command-line utility (CMD.EXE with any fake command, for example) using your own login name and empty password (echo.|runas /user:yourlogin "cmd.exe /c echo on"). If password is set, execution fails. – Akina – 2018-09-25T07:23:34.340

Answers

1

Windows Settings -> Accounts -> Sign-in options. If the password is not set, red caption will appear atop: "You must add a password before you can use the other sign-in options".

Zhenia Nikitishyn

Posted 2018-09-25T07:13:12.393

Reputation: 11

1

runas /u:domain\username notepad.exe

The utility will prompt for the password, if the right password has been provided, notepad will launch, if not it will produce error 1326: the username or password is incorrect

enter image description here

source:

https://serverfault.com/questions/67706/tool-to-test-a-user-account-and-password-test-login

Origami

Posted 2018-09-25T07:13:12.393

Reputation: 1 309

Not sure if how big a deal it is but when you were redacting your username from the screenshot you missed one - Enter the password for... – motosubatsu – 2018-09-25T09:20:41.093