An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        


PwdGen


Fast password generator for Windows.




screenshot

# Usage
Run by double-clicking or open it in command prompt:
> src/PwdGen.bat

Specify 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 💙