https://github.com/ucdavis/cgm_ping_checks
A fun project to check the availability status of various systems
https://github.com/ucdavis/cgm_ping_checks
powershell systemstatus
Last synced: 5 months ago
JSON representation
A fun project to check the availability status of various systems
- Host: GitHub
- URL: https://github.com/ucdavis/cgm_ping_checks
- Owner: ucdavis
- Created: 2021-08-13T01:21:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-29T18:50:55.000Z (about 3 years ago)
- Last Synced: 2025-09-24T10:48:07.035Z (5 months ago)
- Topics: powershell, systemstatus
- Language: PowerShell
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## CGM Ping Checks
A fun project to check the availability status of various systems. If a system fails a configured amount of checks then it will be added to the list of systems to report on via email notification from an Office365 account.
### Required Setup
Passphrase for Office355 account `cgminput` must be stored in a file called "specpass.txt" in the same directory as the script. The passphrase is in LastPass, folder "COE IT CGM".
```powershell
#Store encrypted password for cgmsurvey@ucdavis.edu (User ID: cgminput) in secure file
Read-Host -AsSecureString | ConvertFrom-SecureString | Out-File .\specpass.txt
```