Autostart in Windows 10 #525
-
Just installed plex_debrid on my Windows 10 Plex machine and it is brilliant! Now I'm trying to figure out autostart routine for both rclone and plex_debrid for when I reboot. The Discord link in the instructions doesn't connect and I can't find plex_debrid on Discord. Can anyone point me to how to autostart in Win 10 and/or where to find the Discord (or other) community? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 5 replies
-
Same issue. |
Beta Was this translation helpful? Give feedback.
-
Installed Jackett today which looks awesome as well. One of the feeds needed FlareSolverr so installed that as well. Everything working thanks to your comprehensive instructions, @itsToggle! Thank you again for this stellar code. My one open set of related questions is do I need to / how to autostart the various components after an inevitable reboot. That includes:
Cheers and thanks to all who might help! |
Beta Was this translation helpful? Give feedback.
-
Not sure what the official suggestion is and I may have made it work in a hacky way.I wrote two simple Powershell files that are called on start-up and set plex-debrid to open without the menu prompts. This has led to when the PC is turned on and logged into plex-debird auto starts and plex auto starts anyway. plex debrid script:
RClone Script:
|
Beta Was this translation helpful? Give feedback.
-
Thanks again @PittsGitHub. I used your approach with a minor edit replacing "cd" with "Set-Location". plex debrid script: $Title = "plex-debrid" RClone Script: $Title = "rclone" Then I created a batch file and put it into task scheduler to run on computer start. I had to put the execution policy modifiers in to get it past the policy restrictions. Seems to be working fine. Autostart-rclone-debrid.bat powershell.exe -executionpolicy remotesigned -File E:\Desktop\Powershell_Scripts\rclone.ps1 |
Beta Was this translation helpful? Give feedback.
-
Just wanted to revisit and document what I ended up employing for autostarting. I had some reliability problems with my system using my above solution so here's what has been working very reliably for me --- Filename: plex-debrid.ps1 (located in plex_debrid-main directory) Filename: Autostart-debrid.bat (located in plex_debrid-main directory, and shortcut in Windows Startup folder) Filename: rclone.ps1 (located in rclone directory) Filename: Autostart-rclone.bat (located in rclone directory, and shortcut in Windows Startup folder) Filename: Autostart-flaresolverr.bat (located in flaresolverr directory, and shortcut in Windows Startup folder) |
Beta Was this translation helpful? Give feedback.
-
Hey @omerf111, Enjoy - plex_debrid is awesome! |
Beta Was this translation helpful? Give feedback.
Not sure what the official suggestion is and I may have made it work in a hacky way.I wrote two simple Powershell files that are called on start-up and set plex-debrid to open without the menu prompts.
This has led to when the PC is turned on and logged into plex-debird auto starts and plex auto starts anyway.
plex debrid script:
RClone Script: