fix: isolate personal wechat wcf host

This commit is contained in:
Codex
2026-06-13 16:17:25 +00:00
parent 5d484d1ac4
commit 3b6d22d817
5 changed files with 359 additions and 106 deletions
+29 -11
View File
@@ -1,7 +1,9 @@
$ErrorActionPreference = "Continue"
$Root = "C:\UniDesk\personal-wechat"
$WcfRoot = Join-Path $Root "wcf\v39.5.2"
$StateRoot = Join-Path $Root "wcf-state"
$DataRoot = Join-Path $Root "data\profile"
$PidFile = Join-Path $StateRoot "wcf-host.pid"
$StatusFile = Join-Path $StateRoot "status.json"
$PrepareResultFile = Join-Path $StateRoot "prepare-result.json"
@@ -10,34 +12,45 @@ $PrepareStderr = Join-Path $StateRoot "prepare.stderr.log"
$PrepareProgress = Join-Path $StateRoot "prepare-progress.log"
$Stdout = Join-Path $StateRoot "wcf-host.stdout.log"
$Stderr = Join-Path $StateRoot "wcf-host.stderr.log"
$HostLog = Join-Path $StateRoot "wcf-host.log"
$InjectorLog = Join-Path $WcfRoot "injector.log"
function Read-JsonFile {
param([string]$Path)
if (!(Test-Path $Path)) { return $null }
if (!(Test-Path -LiteralPath $Path)) { return $null }
try { return Get-Content $Path -Raw | ConvertFrom-Json } catch { return @{ parseError = $_.Exception.Message } }
}
function Tail-Text {
param([string]$Path)
if (!(Test-Path $Path)) { return "" }
if (!(Test-Path -LiteralPath $Path)) { return "" }
try {
return (Get-Content $Path -Tail 80 -ErrorAction SilentlyContinue) -join "`n"
} catch {
return $_.Exception.Message
}
}
$pidValue = $null
$running = $false
if (Test-Path $PidFile) {
$pidValue = Get-Content $PidFile -ErrorAction SilentlyContinue
if (Test-Path -LiteralPath $PidFile) {
$pidValue = (Get-Content $PidFile -ErrorAction SilentlyContinue | Select-Object -First 1)
if ($pidValue) {
$running = [bool](Get-Process -Id ([int]$pidValue) -ErrorAction SilentlyContinue)
}
}
$status = Read-JsonFile $StatusFile
$prepare = Read-JsonFile $PrepareResultFile
$prepareProc = Get-Process -Name powershell -ErrorAction SilentlyContinue |
Where-Object { $_.Path -like "*powershell*" -or $_.ProcessName -like "*powershell*" } |
Sort-Object StartTime -Descending |
Select-Object -First 5 Id,ProcessName,StartTime
$ports = Get-NetTCPConnection -LocalPort 10086,10087 -ErrorAction SilentlyContinue | Select-Object LocalAddress,LocalPort,State,OwningProcess
$personalProcesses = Get-CimInstance Win32_Process -ErrorAction SilentlyContinue |
Where-Object {
($_.ExecutablePath -like "$Root\*") -or
($_.CommandLine -like "*$WcfRoot\wcf_host.py*") -or
($_.Name -eq "WeChatAppEx.exe" -and $_.CommandLine -like "*$DataRoot*")
} |
Select-Object ProcessId,ParentProcessId,Name,ExecutablePath,CommandLine
[pscustomobject]@{
ok = $true
pid = $pidValue
@@ -45,7 +58,6 @@ $prepareProc = Get-Process -Name powershell -ErrorAction SilentlyContinue |
prepared = if ($prepare) { [bool]$prepare.ok } else { $false }
prepare = $prepare
prepareRuntime = [ordered]@{
candidateProcesses = $prepareProc
stdout = $PrepareStdout
stderr = $PrepareStderr
progress = $PrepareProgress
@@ -54,17 +66,23 @@ $prepareProc = Get-Process -Name powershell -ErrorAction SilentlyContinue |
progressTail = Tail-Text $PrepareProgress
}
status = $status
ports = Get-NetTCPConnection -LocalPort 10086,10087 -ErrorAction SilentlyContinue | Select-Object LocalAddress,LocalPort,State,OwningProcess
ports = $ports
personalProcesses = $personalProcesses
logs = [ordered]@{
stdout = $Stdout
stderr = $Stderr
host = $HostLog
injector = $InjectorLog
stdoutTail = Tail-Text $Stdout
stderrTail = Tail-Text $Stderr
hostTail = Tail-Text $HostLog
injectorTail = Tail-Text $InjectorLog
}
paths = [ordered]@{
root = $Root
dataRoot = $DataRoot
stateRoot = $StateRoot
statusFile = $StatusFile
prepareResultFile = $PrepareResultFile
}
} | ConvertTo-Json -Depth 8
} | ConvertTo-Json -Depth 10