• if you coded this as part of a winform, then there is a progress bar:

    $Form = New-Object Windows.Forms.Form

    $progress = New-Object System.Windows.Forms.ProgressBar

    $Form.controls.add($progress)

    this is the only way i can think of

    cheers