Fix PowerShell syntax error in Backup-GERegistry.ps1

Changed ${fileSizeKB} to $fileSizeKB to fix parsing error on some systems.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-09 14:53:22 -05:00
parent 7a22b95a3d
commit d169892362

View File

@@ -176,7 +176,7 @@ foreach ($type in $registryPaths.Keys) {
if ($success -and (Test-Path $regInfo.OutputFile)) { if ($success -and (Test-Path $regInfo.OutputFile)) {
$fileSize = (Get-Item $regInfo.OutputFile).Length $fileSize = (Get-Item $regInfo.OutputFile).Length
$fileSizeKB = [math]::Round($fileSize / 1KB, 2) $fileSizeKB = [math]::Round($fileSize / 1KB, 2)
Write-ColorOutput " Saved to: $($regInfo.OutputFile) (${fileSizeKB} KB)" "Green" Write-ColorOutput " Saved to: $($regInfo.OutputFile) ($fileSizeKB KB)" "Green"
$backupResults += @{ $backupResults += @{
Type = $type Type = $type
@@ -240,7 +240,7 @@ if ($mergedCount -gt 0) {
$fileSize = (Get-Item $combinedFile).Length $fileSize = (Get-Item $combinedFile).Length
$fileSizeKB = [math]::Round($fileSize / 1KB, 2) $fileSizeKB = [math]::Round($fileSize / 1KB, 2)
Write-ColorOutput " Combined backup saved: $combinedFile (${fileSizeKB} KB)" "Green" Write-ColorOutput " Combined backup saved: $combinedFile ($fileSizeKB KB)" "Green"
# Clean up individual files if combined was successful # Clean up individual files if combined was successful
foreach ($result in $backupResults | Where-Object { $_.Success }) { foreach ($result in $backupResults | Where-Object { $_.Success }) {