Files
2025-11-21 17:17:42 +01:00

517 B

Description

Play a sound file from the console window

The Function

[PlaySound]

Pass the path of the sound file into this function to have it play using the following syntax:

PlaySound "C:\Users\User\AppData\Local\Temp\sound.wav"
function PlaySound {
[CmdletBinding()]
param (	
[Parameter (Mandatory = $True, Position=0, ValueFromPipeline = $True)]
[string]$File
)
$PlaySound=New-Object System.Media.SoundPlayer;$PlaySound.SoundLocation=$File;$PlaySound.playsync()
}