Beep.ps1

function Beep{
    param(
        [int]$Freq = 1100,
        [int]$Duration = 500
    )
    [System.Console]::Beep($Freq,$Duration)
}