0621.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing Plex Media Server on Windows</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To Install Plex On Windows,Plex Media Server Windows Install,How To Setup Plex,How To Install Plex,Getting Started With Plex Media Server,Starting A Plex Media Server,Install Guide,Media Server,Microsoft,Home Lab,Plex,Plex Media Server,Self-Hosted,Plex Server,Windows,PowerShell,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing Plex Media Server on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="03/23/2022 07:55:39 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Installing Plex Media Server on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>Install Plex Media Server</h2>
  26. <ol>
  27. <li>Log into the Windows device</li>
  28. <li>Run the following commands in a PowerShell window
  29. <div class="codeBlock PS"># change directory to user downloads<br />
  30. cd $ENV:UserProfile\Downloads<br />
  31. # download latest plex media server installer<br />
  32. $ProgressPreference = &#39;SilentlyContinue&#39;; $t = Invoke-WebRequest &#39;https://plex.tv/api/downloads/5.json&#39;; $null = ($t -Match &#39;&quot;distro&quot;:&quot;windows&quot;,&quot;url&quot;:&quot;(https:\/\/downloads\.plex\.tv\/plex-media-server-new\/[^/]*\/windows\/[^/]*\.exe)&quot;,&#39;); Invoke-WebRequest $Matches[1] -OutFile .\plexmediaserver.exe; $ProgressPreference = &#39;Continue&#39;<br />
  33. # run the installer<br />
  34. .\plexmediaserver.exe</div>
  35. </li>
  36. <li>Click Install on the Plex Media Server Setup dialog</li>
  37. <li>After the installation completes click Launch</li>
  38. </ol>
  39. <h2>Configuring Plex Account</h2>
  40. <ol>
  41. <li>Open a web browser and navigate to http://DNSorIP:32400/web</li>
  42. <li>Log in with one of the available options or click sign up with email</li>
  43. <li>Give the Plex server a name &gt; Click Next</li>
  44. <li>Click the Add Library button &gt; Select the media type</li>
  45. <li>Select Add folders from the left navigation &gt; Click Browse for media folder &gt; Select the folder to add to the media &gt; Click Add Library</li>
  46. <li>Click Next</li>
  47. <li>Click Done to complete the server setup</li>
  48. <li>Welcome to Plex Media Server</li>
  49. </ol>
  50. </div>
  51. </div>
  52. </body>
  53. </html>