Random Passsword generator In cmd prompt
I was browsing in the internet and found an simple utility for generating random passwords. Folow this tutorial to generate random passwords.
1. Click start -> run -> notepad.
2. In notepad type the following.
4. That's it you have created random password generator.
I was browsing in the internet and found an simple utility for generating random passwords. Folow this tutorial to generate random passwords.
1. Click start -> run -> notepad.
2. In notepad type the following.
@echo off
:a
echo Here are 4 random passwords
echo %random%, %random%, %random%,%random%
pause
cls
goto a
3. Now save notepad with .bat extension.4. That's it you have created random password generator.