sync: auto-sync from HOWARD-HOME at 2026-07-05 13:42:15

Author: Howard Enos
Machine: HOWARD-HOME
Timestamp: 2026-07-05 13:42:15
This commit is contained in:
2026-07-05 13:42:45 -07:00
parent 6ad608c3bf
commit a5b8f6e7b1
6 changed files with 6196 additions and 618 deletions

8
.chk2.ps1 Normal file
View File

@@ -0,0 +1,8 @@
Import-Module BitsTransfer
'--- all BITS jobs (AllUsers) ---'
Get-BitsTransfer -AllUsers -ErrorAction SilentlyContinue | Select-Object DisplayName,JobState,BytesTransferred,BytesTotal,OwnerAccount | Format-Table -AutoSize | Out-String
'--- desktop files ---'
Get-ChildItem 'C:\Users\howar\Desktop' -Filter '*.iso*' -Force -ErrorAction SilentlyContinue | Select-Object Name,Length,LastWriteTime | Format-Table -AutoSize | Out-String
'--- tmp BITS file? ---'
Get-ChildItem 'C:\Users\howar\Desktop' -Filter 'BIT*' -Force -Hidden -ErrorAction SilentlyContinue | Select-Object Name,Length | Format-Table -AutoSize | Out-String
'uptime-min: ' + [math]::Round(((Get-Date) - (Get-CimInstance Win32_OperatingSystem).LastBootUpTime).TotalMinutes,0)