新增: 电子相册全屏模式+开机启动+Win10兼容

This commit is contained in:
2026-05-27 01:00:39 +08:00
parent 0cd9cd40b4
commit f3148bf72f
31 changed files with 1290 additions and 490 deletions

View File

@@ -0,0 +1,8 @@
$p = Get-Process -Name 'u-desktop' -ErrorAction SilentlyContinue
if (-not $p) { Write-Host "u-desktop not running"; exit 0 }
Write-Host "PID: $($p.Id)"
Write-Host "CPU time: $([math]::Round($p.CPU, 2))s"
Write-Host "WorkingSet: $([math]::Round($p.WorkingSet64/1MB, 1)) MB"
Write-Host "PrivateMem: $([math]::Round($p.PrivateMemorySize64/1MB, 1)) MB"
Write-Host "Threads: $($p.Threads.Count)"
Write-Host "Handles: $($p.HandleCount)"