├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── Arguments.cs ├── LICENSE ├── LocalSystem ├── Msi │ ├── Api.cs │ ├── InstallProperty.cs │ ├── InstalledProduct.cs │ └── MsiException.cs ├── WinApi.cs ├── WindowsUser.cs └── WindowsUserSidNotFound.cs ├── Log.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Plex ├── Api.cs ├── AppNotInstalledException.cs ├── EventSource.cs ├── MediaContainer.cs ├── MediaServer.cs ├── PlexDataFolderNotFoundException.cs ├── Registry.cs ├── ServerService.cs ├── ServiceNotInstalledException.cs ├── SilentUpdate.cs └── Update │ ├── CurrentVersion.cs │ ├── Package.cs │ ├── Release.cs │ └── SystemType.cs ├── PlexServerAutoUpdater.csproj ├── PlexServerAutoUpdater.sln ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── SystemExitCodes.cs └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /Arguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Arguments.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalSystem/Msi/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/Msi/Api.cs -------------------------------------------------------------------------------- /LocalSystem/Msi/InstallProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/Msi/InstallProperty.cs -------------------------------------------------------------------------------- /LocalSystem/Msi/InstalledProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/Msi/InstalledProduct.cs -------------------------------------------------------------------------------- /LocalSystem/Msi/MsiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/Msi/MsiException.cs -------------------------------------------------------------------------------- /LocalSystem/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/WinApi.cs -------------------------------------------------------------------------------- /LocalSystem/WindowsUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/WindowsUser.cs -------------------------------------------------------------------------------- /LocalSystem/WindowsUserSidNotFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/LocalSystem/WindowsUserSidNotFound.cs -------------------------------------------------------------------------------- /Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Log.cs -------------------------------------------------------------------------------- /MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/MainForm.Designer.cs -------------------------------------------------------------------------------- /MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/MainForm.cs -------------------------------------------------------------------------------- /MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/MainForm.resx -------------------------------------------------------------------------------- /Plex/Api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/Api.cs -------------------------------------------------------------------------------- /Plex/AppNotInstalledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/AppNotInstalledException.cs -------------------------------------------------------------------------------- /Plex/EventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/EventSource.cs -------------------------------------------------------------------------------- /Plex/MediaContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/MediaContainer.cs -------------------------------------------------------------------------------- /Plex/MediaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/MediaServer.cs -------------------------------------------------------------------------------- /Plex/PlexDataFolderNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/PlexDataFolderNotFoundException.cs -------------------------------------------------------------------------------- /Plex/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/Registry.cs -------------------------------------------------------------------------------- /Plex/ServerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/ServerService.cs -------------------------------------------------------------------------------- /Plex/ServiceNotInstalledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/ServiceNotInstalledException.cs -------------------------------------------------------------------------------- /Plex/SilentUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/SilentUpdate.cs -------------------------------------------------------------------------------- /Plex/Update/CurrentVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/Update/CurrentVersion.cs -------------------------------------------------------------------------------- /Plex/Update/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/Update/Package.cs -------------------------------------------------------------------------------- /Plex/Update/Release.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/Update/Release.cs -------------------------------------------------------------------------------- /Plex/Update/SystemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Plex/Update/SystemType.cs -------------------------------------------------------------------------------- /PlexServerAutoUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/PlexServerAutoUpdater.csproj -------------------------------------------------------------------------------- /PlexServerAutoUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/PlexServerAutoUpdater.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/README.md -------------------------------------------------------------------------------- /SystemExitCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/SystemExitCodes.cs -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechieGuy12/PlexServerAutoUpdater/HEAD/app.config --------------------------------------------------------------------------------