PowerShell - Password Generator

This PowerShell function generates one or more “random” human-readable passwords, with some options for complexity and language. By default, this function will use a wordlist hosted on my GitHub. If you’d like to use your own (offline) wordlist, use the “-WordlistFile ” parameter, or change the URL in the function. Some examples: New-Password -Count 2 -NumberCount 5 -CharacterCount 3 BridgeMarry#@$32968 SilverSkill@#%83791 New-Password -WordListFile 'C:\Temp\MyOwnCustomWordlist.txt' CustomWords#7638 See below for the full function, or directly on my GitHub....

August 17, 2022 · TOM DE LEEUW