0961.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install MeshCentral - Remote Management Site - 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="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Computer Management,How To Install MeshCentral,MeshCentral,MeshCentral Installation Guide,NPM,NodeJS,Remote Computer Management,Remote Management,Web Based Utilities,Windows,Microsoft Windows,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install MeshCentral - Remote Management Site - on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="09/04/2024 08:31:50 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>Install MeshCentral - Remote Management Site - on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is MeshCentral?</h2>
  26. <blockquote><em>MeshCentral is a full computer management web site. With MeshCentral, you can run your own web server to remotely manage and control computers on a local network or anywhere on the internet. -<a href="https://github.com/Ylianst/MeshCentral" target="_blank">https://github.com/Ylianst/MeshCentral</a></em></blockquote>
  27. <h2>Installing MeshCentral</h2>
  28. <ol>
  29. <li>Log into the Windows device</li>
  30. <li>Download NodeJS <a href="https://nodejs.org/en/download/current/" target="_blank">Download</a></li>
  31. <li>Install NodeJS, accepting all defaults</li>
  32. <li>Launch PowerShell as administrator from the Start menu</li>
  33. <li>Run the following commands in the PowerShell window
  34. <div class="codeBlock PS"># create a meshcentral folder<br />
  35. mkdir $ENV:ProgramFiles/meshcentral<br />
  36. # change to the new directory<br />
  37. cd $ENV:ProgramFiles/meshcentral<br />
  38. # install meshcentral<br />
  39. npm install meshcentral<br />
  40. # install dependencies for running as a service<br />
  41. node node_modules/meshcentral --install<br />
  42. # create meshcentral service<br />
  43. node node_modules/meshcentral --install</div>
  44. </li>
  45. <li>Open a web browser and navigate to https://DNSorIP</li>
  46. <li>Accept the certificate warning</li>
  47. <li>Click the link to create an account</li>
  48. <li>Complete the form by entering an username, email and password &gt; Click Create Account</li>
  49. <li>Welcome to MeshCentral</li>
  50. </ol>
  51. <p>Source: <a href="https://meshcentral.com/docs/MeshCentral2InstallGuide.pdf" target="_blank">https://meshcentral.com/docs/MeshCentral2InstallGuide.pdf</a></p> </div>
  52. </div>
  53. </body>
  54. </html>