Pinned Loading
-
uptime-kuma-pacman-ghost-light
uptime-kuma-pacman-ghost-light PublicTurn a Pacman Ghost Light into an Uptime Kuma status monitor with CircuitPython.
Python 3
-
This is the Plex monitoring script t...
This is the Plex monitoring script that wrote and have been using since +/- 2017. I cribbed the list of processes to kill and the idea of checking that the web UI responded without error from other people's scripts but the rest is all me. 1#Start-Transcript -Append -Path .\plex-monitor-transcript.log -IncludeInvocationHeader:$false -Force
23<#
4This is my Plex monitoring script. There are many like it, but this one is mine. If
5you're running Plex as a Windows Service this script is not for you as-written, but
-
Backup BitLocker recovery keys to Ac...
Backup BitLocker recovery keys to Active Directory 1Get-BitLockerVolume | `
2Where-Object { $_.VolumeStatus -like "FullyEncrypted" } | `
3ForEach-Object {
4foreach( $Key in $_.KeyProtector ) {
5if( $Key -like "RecoveryPassword" ) {
-
Output total disk read/write activit...
Output total disk read/write activity in MB/s 1Get-Counter -Counter "\LogicalDisk(_Total)\Disk Read Bytes/sec","\LogicalDisk(_Total)\Disk Write Bytes/sec" -Continuous -SampleInterval 1 | ForEach-Object {
2[PSCustomObject]@{
3Time = (get-date $_.Timestamp -Format u).replace("Z", "")
4Read = [math]::round($_.CounterSamples[0].CookedValue /1Mb, 0)
5Write = [math]::round($_.CounterSamples[1].CookedValue /1Mb, 0)
-
Modifies the output of Get-PhysicalD...
Modifies the output of Get-PhysicalDisk to have enclosure information. Works On My Machine™ certified with an LSI SAS 9201-16e and Promise SAS enclosures. 1<#
2Wrote this to scratch an itch for tracking where my disks are physically located within and across
3storage enclosures. Before writing this I was using a spreadsheet, which was tedious to maintain.
4For this script to be useful, you'll need a storage enclosure that Windows recognizes and exposes
5through WMI, ie: one that provides SCSI Enclosure Services (SES).
-
Sets all Windows Taskbar Notificatio...
Sets all Windows Taskbar Notification Icons to Visible. Should probably be in a Scheduled Task set to run 'At log on' and 'Repeat task every: 1 hour' 1$basePath = 'HKCU:\Control Panel\NotifyIconSettings\'
2Get-ChildItem -Path $basePath | `
3ForEach-Object { Get-ItemProperty "$basePath$($_.PSChildName)" } | `
4Set-ItemProperty -Name 'IsPromoted' -Value 1
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.