Skip to content

Instantly share code, notes, and snippets.

@vmiheer
Created November 4, 2018 17:20
Show Gist options
  • Save vmiheer/37833f6cce62a648d7a29a6cb20beec9 to your computer and use it in GitHub Desktop.
Save vmiheer/37833f6cce62a648d7a29a6cb20beec9 to your computer and use it in GitHub Desktop.
Get spotify to foreground
# https://blogs.technet.microsoft.com/heyscriptingguy/2007/02/03/hey-scripting-guy-how-can-i-use-windows-powershell-to-get-a-list-of-all-the-open-windows-on-a-computer/
# https://stackoverflow.com/questions/4993926/maximize-window-and-bring-it-in-front-with-powershell
# Needs Powershell community extentions
Set-ForegroundWindow (get-process Spotify | Where-Object {$_.MainWindowTitle -ne ""}).MainWindowHandle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment