$p = 'd:\develop\TelosDB\src\backend\resources\windows.rc'
if (Test-Path $p) {
$c = Get-Content -Raw -LiteralPath $p
[System.IO.File]::WriteAllText($p, $c, [System.Text.Encoding]::GetEncoding(932))
Write-Output "Wrote ANSI: $p"
Get-Item $p | Select-Object FullName, Length
} else {
Write-Output "Not found: $p"
}