Starting Spotify and playing a specific song
-
- You should have to create a VBS File in a notepad.
- Open a new notepad and paste this code, after personalize for yourself:
Set WshShell = WScript.CreateObject("WScript.Shell")
Comandline = "source of your spotify.exe file here"
WScript.sleep 4000
CreateObject("WScript.Shell").Run("spotify:track:Here you should put the song URI code. You can find it by click in share and copy link. Is the code between track/ and question mark")
WScript.sleep 3000
WshShell.SendKeys "{ENTER}"Save it as Save as>-Type field: all type. and put ".vbs" at the end of your file name.
Thats it.