<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to automatically resume playing playlist after logging back in in Desktop (Windows)</title>
    <link>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/5042733#M90702</link>
    <description>&lt;P&gt;Hey &lt;a href="https://community.spotify.com/t5/user/viewprofilepage/user-id/23958053"&gt;@laisnovaes&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently there is no option to set a specific time for a playlist to play. You can have a look in our Idea Exchange to see if someone else has already made a similar suggestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there isn't one, you can give&amp;nbsp;&lt;A href="https://community.spotify.com/t5/Spotify-Answers/Idea-Exchange-How-can-I-submit-an-idea/ta-p/4863573" target="_blank"&gt;these&lt;/A&gt;&amp;nbsp;steps a go and submit your idea. That way other users can also support it. Rest assured that the higher the number of votes an idea gets, the more likely it is for the idea to be implemented. &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to set your alarm clock to play a Spotify track, you can head &lt;A href="https://spotify-everywhere.com/products/clock-app-from-google?_pos=2&amp;amp;_sid=ad40dcb0d&amp;amp;_ss=r?_pos=2&amp;amp;_sid=ad40dcb0d&amp;amp;_ss=r&amp;amp;" target="_blank"&gt;here&lt;/A&gt;&amp;nbsp;and check the steps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this was helpful for you. If you have more questions, we are here for you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;
&amp;nbsp;&lt;BR /&gt;
&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 27 Sep 2020 15:02:06 GMT</pubDate>
    <dc:creator>Ver</dc:creator>
    <dc:date>2020-09-27T15:02:06Z</dc:date>
    <item>
      <title>How to automatically resume playing playlist after logging back in</title>
      <link>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/4522330#M61940</link>
      <description>&lt;P&gt;When I log in to my laptop (or unlock after a break), I want Spotify to automatically play - but only if it was running before I closed my laptop - and I don't like it starting halfway through a song, so I want it to always start a new track on my playlist.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I figured it out and just got it working with a VBScript and the Task Scheduler...&amp;nbsp; and I thought I'd share my solution.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(If you're not used to messin' with stuff like this, see Stack Overflow or ask your local neighborhood nerd.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open &lt;STRONG&gt;&lt;FONT color="#000000"&gt;Notepad&lt;/FONT&gt; &lt;/STRONG&gt;and paste in the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Set objWMIService = GetObject("winmgmts:" _
    &amp;amp; "{impersonationLevel=impersonate}!\\.\root\cimv2")
Set colProcessList = objWMIService.ExecQuery _
    ("Select Name from Win32_Process WHERE Name='Spotify.exe'")

If colProcessList.count&amp;gt;0 then
    Set WshShell = WScript.CreateObject("WScript.Shell")
    Comandline = "C:\Users\&lt;STRONG&gt;&lt;FONT color="#993366"&gt;**YOUR PROFILE NAME**&lt;/FONT&gt;&lt;/STRONG&gt;\AppData\Roaming\Spotify\Spotify.exe"
    WScript.sleep 500
    CreateObject("WScript.Shell").Run("&lt;FONT color="#0000FF"&gt;spotify:user:johnsmith:playlist:0rDhbjtAgoLssBmFPaBDpN&lt;/FONT&gt;")
    WScript.sleep 2000
    WshShell.SendKeys "^{RIGHT}"
    Set WshShell = Nothing
else
    'do nothing
End if

Set objWMIService = Nothing
Set colProcessList = Nothing&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;replace&lt;FONT color="#993366"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt; **YOUR PROFILE NAME**&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; with your windows login (or otherwise adjust the &lt;FONT color="#993366"&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;Spotify.exe&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; path as requried)&lt;/LI&gt;&lt;LI&gt;replace&amp;nbsp;&lt;FONT face="courier new,courier" color="#0000FF"&gt;&lt;FONT size="2"&gt;spotify:user:johnsmith:playlist:0rDhbjtAgoLssBmFPaBDpN&lt;/FONT&gt;&lt;/FONT&gt; with your &lt;FONT color="#0000FF"&gt;Spotify playlist URI&lt;/FONT&gt;.&amp;nbsp; (Right-click your playlist &amp;gt; &lt;EM&gt;Share&lt;/EM&gt; &amp;gt; &lt;EM&gt;Copy Spotify URI&lt;/EM&gt;)&lt;/LI&gt;&lt;LI&gt;Save with a filename extension of &lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;.VBS&lt;/FONT&gt;&lt;/STRONG&gt;, somewhere with (you'll probably have to set the file type to *.* in the Save dialog for it to work)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Open &lt;FONT color="#FF6600"&gt;Task Scheduler&lt;/FONT&gt; (Click &lt;EM&gt;`Start`&lt;/EM&gt; and type &lt;EM&gt;`Task Scheduler`&lt;/EM&gt;)&lt;/LI&gt;&lt;LI&gt;Click &lt;FONT color="#000000"&gt;&lt;STRONG&gt;Create Task&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;On the &lt;FONT color="#FF6600"&gt;General&lt;/FONT&gt; tab, give the task a name&lt;/LI&gt;&lt;LI&gt;On the &lt;FONT color="#FF6600"&gt;Triggers&lt;/FONT&gt; tab, click &lt;FONT color="#000000"&gt;NEW&lt;/FONT&gt; &amp;gt; &lt;FONT color="#000000"&gt;Begin the task:&lt;STRONG&gt;&lt;EM&gt; On workstation unlock&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt; &amp;gt; Delay Task for &lt;EM&gt;5 seconds&lt;/EM&gt;, click &lt;FONT color="#000000"&gt;OK&lt;/FONT&gt;. click &lt;FONT color="#000000"&gt;NEW&lt;/FONT&gt; again &amp;gt;&lt;EM&gt; &lt;FONT color="#000000"&gt;Begin the task:&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000000"&gt;At Log On&lt;/FONT&gt; &lt;/STRONG&gt;&lt;/EM&gt;&amp;gt; Delay Task for &lt;EM&gt;15 seconds&lt;/EM&gt;, click &lt;FONT color="#000000"&gt;OK&lt;/FONT&gt;.&lt;/LI&gt;&lt;LI&gt;On the &lt;FONT color="#FF6600"&gt;Actions&lt;/FONT&gt; tab, click &lt;FONT color="#000000"&gt;NEW &lt;/FONT&gt;&amp;gt; &lt;FONT color="#000000"&gt;Start a program&lt;/FONT&gt; &amp;gt; under &lt;FONT color="#000000"&gt;Program/Script&lt;/FONT&gt;, paste the &lt;FONT color="#000000"&gt;&lt;EM&gt;path and filename&lt;/EM&gt;&lt;/FONT&gt; where you saved the &lt;FONT face="courier new,courier" color="#000000"&gt;.VBS &lt;/FONT&gt;file. Click &lt;FONT color="#000000"&gt;OK&lt;/FONT&gt; - &lt;FONT color="#000000"&gt;OK&lt;/FONT&gt;.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Thu, 05 Jul 2018 13:44:09 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/4522330#M61940</guid>
      <dc:creator>ashleedawg</dc:creator>
      <dc:date>2018-07-05T13:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically resume playing playlist after logging back in</title>
      <link>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/4522334#M61942</link>
      <description>&lt;P&gt;Splendid! &lt;span class="lia-unicode-emoji" title=":party_popper:"&gt;🎉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for sharing it!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jul 2018 13:40:33 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/4522334#M61942</guid>
      <dc:creator>Loxer</dc:creator>
      <dc:date>2018-07-05T13:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically resume playing playlist after logging back in</title>
      <link>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/5042199#M90690</link>
      <description>Do you know any way to set a time for the playlist to play daily? (Sort like an alarm). I've tried A LOT of different things on Task Scheduler, but nothing has worked so far.</description>
      <pubDate>Sat, 26 Sep 2020 13:23:19 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/5042199#M90690</guid>
      <dc:creator>laisnovaes</dc:creator>
      <dc:date>2020-09-26T13:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to automatically resume playing playlist after logging back in</title>
      <link>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/5042733#M90702</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.spotify.com/t5/user/viewprofilepage/user-id/23958053"&gt;@laisnovaes&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently there is no option to set a specific time for a playlist to play. You can have a look in our Idea Exchange to see if someone else has already made a similar suggestion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If there isn't one, you can give&amp;nbsp;&lt;A href="https://community.spotify.com/t5/Spotify-Answers/Idea-Exchange-How-can-I-submit-an-idea/ta-p/4863573" target="_blank"&gt;these&lt;/A&gt;&amp;nbsp;steps a go and submit your idea. That way other users can also support it. Rest assured that the higher the number of votes an idea gets, the more likely it is for the idea to be implemented. &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want to set your alarm clock to play a Spotify track, you can head &lt;A href="https://spotify-everywhere.com/products/clock-app-from-google?_pos=2&amp;amp;_sid=ad40dcb0d&amp;amp;_ss=r?_pos=2&amp;amp;_sid=ad40dcb0d&amp;amp;_ss=r&amp;amp;" target="_blank"&gt;here&lt;/A&gt;&amp;nbsp;and check the steps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this was helpful for you. If you have more questions, we are here for you.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;
&amp;nbsp;&lt;BR /&gt;
&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Sep 2020 15:02:06 GMT</pubDate>
      <guid>https://community.spotify.com/t5/Desktop-Windows/How-to-automatically-resume-playing-playlist-after-logging-back/m-p/5042733#M90702</guid>
      <dc:creator>Ver</dc:creator>
      <dc:date>2020-09-27T15:02:06Z</dc:date>
    </item>
  </channel>
</rss>

