Springtime Salamanders
Found hiding in the leaves on a hike up the mountain.


PowerShell Tail From Temp File Containing Date
$currentDate = Get-Date -Format "yyyy-MM-ss";
# The file is in the parent temp directory, not the user specific temp directory
$TailFilePath = $env:TEMP + "\..\$currentDate process log usage.txt";
Get-Content -Path $TailFilePath -Wait -Tail 15;