Powershell: uptime-remediation.ps1
Uptime Remediation Script Explained The uptime remediation script is designed to display a toast notification on...
riche
Author
From the Blog
Stay updated with the latest news, articles, and insights from our team of experts.
Uptime Remediation Script Explained The uptime remediation script is designed to display a toast notification on...
riche
Author
Introduction In this blog post, we will explore a PowerShell script that generates a report detailing certificates...
riche
Author
IntroductionIn many enterprise environments, Windows services are critical to application availability. While Windows...
riche
Author
All good PowerShell revolves around functions, and in a nutshell they’re reusable snippets of code that you’ll call...
riche
Author
In part 1, we encrypted our credentials using an AES.key to allow it to be portable for use in multiple environments...
riche
Author
Sometimes there is a requirement to run a PowerShell script that may use credentials, whilst it’s always bad to embed...
riche
Author
This script will set your lockscreen and wallpaper at a registry level, it requires admin rights to write the registry...
riche
Author
Sometimes you just need to know how many members are in a group (or groups), this function does exactly that.Function...
riche
Author
$daytofind = 'Tuesday' $i = 0 do { $i++ $futureday = (get-date).AddDays($i) |...
riche
Author