Skip to content

Instantly share code, notes, and snippets.

View TechBento's full-sized avatar

TechBento IT/IS TechBento

View GitHub Profile
@TechBento
TechBento / README.md
Created August 13, 2017 19:55 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed


@TechBento
TechBento / process_monitor_params.ps1
Created November 11, 2020 18:21
Monitor a process using PowerShell and notify Event Log.
param([String[]] $processList)
#ABOVE IS PRODUCTION, comment out when debugging
#This is used with BarracudaRMM.
#Schedule this task to run every hour, or as often as practical.
#Configure Barracuda Managed Workplace Monitors look for event 9207 and will throw a critical alert if they see it. 9208 is ignored.
#Call the script with parameters, so script.ps1 process1 process2 process3
$global:message = "PMP recorded this diagnostic event. The Process \`"$process\`" has suddenly terminated."