https://github.com/hxr16f/pwdgen
Fast password generator for Windows.
https://github.com/hxr16f/pwdgen
charset password pwdgen
Last synced: 3 months ago
JSON representation
Fast password generator for Windows.
- Host: GitHub
- URL: https://github.com/hxr16f/pwdgen
- Owner: hXR16F
- License: gpl-3.0
- Created: 2019-06-25T15:48:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-19T13:08:46.000Z (about 5 years ago)
- Last Synced: 2025-01-26T07:46:22.185Z (5 months ago)
- Topics: charset, password, pwdgen
- Language: Batchfile
- Homepage:
- Size: 414 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PwdGen
Fast password generator for Windows.
![]()
# Usage
Run by double-clicking or open it in command prompt:
> src/PwdGen.batSpecify which charset do you want to use and how long the password should be.
# Usage - command line
Syntax:```batchfile
PwdGen.bat
```
Examples:```batchfile
PwdGen.bat 7 24
PwdGen.bat 1 6
```
# Usage - batch file
Code #1:```batchfile
@echo off
for /f %%i in ('call PwdGen.bat 6 16') do set "password=%%i"
echo Your new password is : %password%
pause
```
Example output:```
Your new password is : NVjpYPUeNoQFrZAe
Press any key to continue . . .
```Code #2:
```batchfile
@echo off
call PwdGen.bat 1 8 > "_string"
for /f "tokens=1*" %%i in (_string) do set "password=%%i"
del /f /q "_string" >nul
echo Your new password is : %password%
pause
```Example output:
```
Your new password is : 61589174
Press any key to continue . . .
```# Charsets
```
1. 0123456789
2. abcdefghijklmnopqrstuvwxyz
3. abcdefghijklmnopqrstuvwxyz + 0123456789
4. ABCDEFGHIJKLMNOPQRSTUVWXYZ
5. ABCDEFGHIJKLMNOPQRSTUVWXYZ + 0123456789
6. abcdefghijklmnopqrstuvwxyz + ABCDEFGHIJKLMNOPQRSTUVWXYZ
7. abcdefghijklmnopqrstuvwxyz + ABCDEFGHIJKLMNOPQRSTUVWXYZ + 0123456789
8. 0123456789 + !@#$%^&*
9. abcdefghijklmnopqrstuvwxyz + !@#$%^&*
10. abcdefghijklmnopqrstuvwxyz + 0123456789 + !@#$%^&*
11. ABCDEFGHIJKLMNOPQRSTUVWXYZ + !@#$%^&*
12. ABCDEFGHIJKLMNOPQRSTUVWXYZ + 0123456789 + !@#$%^&*
13. abcdefghijklmnopqrstuvwxyz + ABCDEFGHIJKLMNOPQRSTUVWXYZ + !@#$%^&*
14. abcdefghijklmnopqrstuvwxyz + ABCDEFGHIJKLMNOPQRSTUVWXYZ + 0123456789 + !@#$%^&*
```# Donate
If you support my work or like my projects, [you can donate me some money](https://github.com/hXR16F/donate/blob/master/README.md). Thank you 💙