https://www.techdirt.com/2022/05/23/att-gets-a-tiny-wrist-slap-for-another-bullshit-wireless-fee/
Monday, May 23, 2022
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
}
Thursday, December 2, 2021
Wednesday, December 1, 2021
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.
Subscribe to:
Posts (Atom)