# Setup SSH key — root@10.100.1.28 (Mailcow VM) $ErrorActionPreference = 'Stop' $hostIp = '10.100.1.28' $key = Join-Path $env:USERPROFILE '.ssh\id_ed25519_mailcow' $pub = "$key.pub" if (-not (Test-Path $pub)) { Write-Host "Generating key $key ..." ssh-keygen -t ed25519 -f $key -C 'geonet-mailcow' -N '""' } & "$PSScriptRoot\fix-ssh-key.ps1"