Private/Wait-ForKeyPress.ps1

function Wait-ForKeyPress {
    Write-Host ""
    Write-Host " Press any key to continue..." -ForegroundColor DarkGray
    $null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")
}