11 lines
494 B
PowerShell
11 lines
494 B
PowerShell
$b='C:\ProgramData\acg-backup'
|
|
'--- COMPLETE.txt ---'
|
|
if (Test-Path (Join-Path $b 'COMPLETE.txt')) { Get-Content (Join-Path $b 'COMPLETE.txt') } else { 'absent' }
|
|
'--- dir listing ---'
|
|
Get-ChildItem $b | Select-Object Name,Length,LastWriteTime | Format-Table -AutoSize | Out-String
|
|
'--- rclone.log tail ---'
|
|
Get-Content (Join-Path $b 'rclone.log') -Tail 25
|
|
'--- rclone process ---'
|
|
$p = Get-Process rclone -ErrorAction SilentlyContinue
|
|
if ($p) { 'RUNNING pid=' + $p.Id } else { 'not running' }
|