foundation_deployment_platform 0.1.0

Foundation deployment platform — VM/container orchestration, Docker runtime, guest infrastructure
1
2
3
4
5
6
7
8
9
# Compress system files in-place (CompactOS). Frees ~2 GB on Windows 11.
# Idempotent — exits early if already compacted.
$state = (& compact.exe /CompactOS:query | Out-String)
if ($state -match 'system is in the Compact state') {
    '  already compacted'
} else {
    & compact.exe /CompactOS:always | Out-Null
    '  compacted'
}