Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davejlong/psatera
PowerShell module for working with the Atera API
https://github.com/davejlong/psatera
Last synced: 6 days ago
JSON representation
PowerShell module for working with the Atera API
- Host: GitHub
- URL: https://github.com/davejlong/psatera
- Owner: davejlong
- License: gpl-3.0
- Created: 2020-04-23T20:32:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T20:03:34.000Z (29 days ago)
- Last Synced: 2024-10-20T10:46:10.774Z (26 days ago)
- Language: PowerShell
- Size: 114 KB
- Stars: 19
- Watchers: 9
- Forks: 11
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# PSAtera - The PowerShell Module for Atera
Start interacting with Atera from PowerShell with the PSAtera module.
## Configuration
The PSAtera module relies on the `ATERAAPIKEY` environment variable for the API key for your Atera account which can be found here:
https://app.atera.com/new/admin/api## Install
```
PS> Install-Module -Name PSAtera
```### Alternative Setup
The below script will make sure all the prerequisites are setup and install PSAtera. Copy and paste the line into a PowerShell window. Run as admin to install PSAtera globally on the system.```
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityPotocol -bor 3072; Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force; Install-Module PSAtera -Force
```