Skip to content

Instantly share code, notes, and snippets.

@sheepla
Last active January 15, 2023 07:13
Show Gist options
  • Save sheepla/8b21a1b6ae440c19bec4fc99b5ae9453 to your computer and use it in GitHub Desktop.
Save sheepla/8b21a1b6ae440c19bec4fc99b5ae9453 to your computer and use it in GitHub Desktop.
gci -r -file -filter windows*.wav C:\Windows\Media\ | %{
echo "Playing $($_.Name)..."
[System.Media.SoundPlayer]::new($_.FullName).PlaySync()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment