Monday, May 23, 2022

I call it the "New Yacht Fee"

 https://www.techdirt.com/2022/05/23/att-gets-a-tiny-wrist-slap-for-another-bullshit-wireless-fee/

Thursday, December 23, 2021

PowerShell Refresh script

 For all of you out there who need to look like you're working...

$wsh = New-Object -ComObject WScript.Shell
while (1) {
  $wsh.SendKeys('+{F15}')
  Start-Sleep -seconds 59
}

Tuesday, September 7, 2021

Delete files older than 30 days

 I have this come up from time to time so I thought I'd go ahead and post the one-liner.


gci | Where-Object {$_.LastWriteTime -lt  (get-date).AddDays(-30)}


Send that to a Remove-Item and you are set.