Skip to content

Instantly share code, notes, and snippets.

@PrateekKumarSingh
Last active March 17, 2016 14:23
Show Gist options
  • Save PrateekKumarSingh/aed9fefa33caa7449703 to your computer and use it in GitHub Desktop.
Save PrateekKumarSingh/aed9fefa33caa7449703 to your computer and use it in GitHub Desktop.
Function Start-RandomMusic($directory)
{
Start-Process (gci $directory -Filter *.mp3 |Get-Random -Count 1).fullname -verb 'play'
}
Start-RandomMusic C:\Users\Prateek\downloads\
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment