-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Auto-download relies on obsolete(?) registry keys existing #37
Comments
I do get the LocalAppData folder for the user running Plex, so I'll see about falling back to that folder if the key isn't present. |
Seeing same issue:
I can confirm that the Is manually adding the |
This is something I have seen with Plex in the past. There is usually a set of registry keys used by Plex where it stores the settings from the Plex server GUI, but sometimes it doesn't have those registry keys, I'm not sure why, maybe if the settings aren't changed. For me, I don't run Plex as an admin, so I had to manually copy the keys from the admin account (which was used to install and initially run Plex) to the account that runs the Plex service. I'm not sure if Plex stores this value elsewhere on the system - if it does then I could use that. An alternative in the meantime is to see about defaulting to the application path of the user that runs the service. |
Out of curiosity, I downloaded an update through the Plex app and then manually re-ran psupdate just to see what would happen, it got further, but still ultimately bombed out. Note: I had not manually added the LocalAppDataPath registry value yet.
It's quite odd because at first it says that it can't find the path, and then it finds the path and the update package? |
So, I've now added the LocalAppDataPath registry value.
Just for reference this is running on Windows Server 2012 R2 and I'm logged in with the local Administrator account performing this via RDP session. |
I had to add the LocalAppDataPath key as well in order to get the program to recognize there was an update available, but did not have any issues after adding that key. |
@funnyfarm299 Thanks! Log file had the same error in it: I looked for the LocalAppdataPath key and did not find it. Adding a String of LocalAppDataPath to: Update: The above actually caused plex to be un-useable. I removed the reg entry, restarted, and everything went back to normal. YMMV |
In order to get auto-downloads working with -silent, I needed to add the following REG_SZ values under HKCU\Software\Plex, Inc.\Plex Media Server:
LocalAppDataPath: "C:\Users\{username}\AppData\Local"
ButlerUpdateChannel: "0"
It doesn't look like the obvious fallbacks are used (user's AppData\Local dir, public update channel) when those keys aren't present.
The text was updated successfully, but these errors were encountered: