Password-related scriptlets module to help with account provisioning or password resets, more useful in bulk operations Started as a way to automate using Peter Giacomo Lombardo's PasswordPusher to generate password links (better than sending passwords in plain text).
Available on PowerShell Gallery at https://www.powershellgallery.com/packages/PwPoSh/
Install-Module -Name PwPoSh
Generates random password with multiple configuration options. Currently not using CryptoRNG for simplicity and speed.
Pushes the generated (or any other) to https://pwpush.com or a privately hosted instance. Was named Push-Password before. Renamed to match PowerShell verb convention.
Retieves the password using the link in https://pwpush.com/p/asdfghjkrwqwd format.
Deletes the password from the server using the link in https://pwpush.com/p/asdfghjkrwqwd format.
Older build of pwpusher return HTTP/500 on successful DELETE
operation, the function captures and mentions that in the output.
Newer builds properly respond with HTTP/200.
A function to work around limitation of older pwpusher builds on password retrieval via REST - will send a generic web request and parse it. Deprecated as pwpusher is updated for REST to work properly.
Moved to Issues