Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thekamilpro/kppwpush
PowerShell module for pwpush.com API
https://github.com/thekamilpro/kppwpush
password powershell pwpush pwpushapi pwsh secret
Last synced: 3 months ago
JSON representation
PowerShell module for pwpush.com API
- Host: GitHub
- URL: https://github.com/thekamilpro/kppwpush
- Owner: thekamilpro
- License: mit
- Created: 2022-10-26T19:02:49.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T18:53:54.000Z (6 months ago)
- Last Synced: 2024-05-18T06:34:10.386Z (6 months ago)
- Topics: password, powershell, pwpush, pwpushapi, pwsh, secret
- Language: PowerShell
- Homepage:
- Size: 34.2 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - thekamilpro/kppwpush - PowerShell module for pwpush.com API (PowerShell)
README
# The KpPwpush Module
Module is a wrapper for [pwpush.com](https://pwpush.com) API
## How to install
Module is available at [PowerShell Gallery](https://www.powershellgallery.com/packages/KpPwpush/) and you can install it with:
```ps1
Install-Module -Name kppwpush
```## Example use
At first, you need to initialise the module by calling ```Connect-KpPwpush```, if not providing any parameters, it connects to pwpush.com server.
Create new password push with password 1234 which expires after 3 days (and default 5 views):
```ps1
New-KpPwpush -Payload 1234 -ExpireAfterDays 3
```