0745.html 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install Chocolatey 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 Chocolatey On Windows,Install Guide,Windows,Microsoft,PowerShell,Microsoft Windows,Package Manager,Application Manager,Chocolatey,ChocolateyGUI,Windows Based Package Manager,Windows Based Application Manager,Chocolatey GUI,Chocolatey User Interface,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install Chocolatey on Windows">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="05/06/2022 12:56:15 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 Chocolatey on Windows</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is Chocolatey?</h2>
  26. <blockquote><em>Chocolatey is a software management solution that allows you to manage 100% of your software, anywhere you have Windows, with any endpoint management tool. -<a href="https://docs.chocolatey.org/en-us/" target="_blank">https://docs.chocolatey.org/en-us/</a></em></blockquote>
  27. <h2>Installing Chocolatey</h2>
  28. <ol>
  29. <li>Launch Powershell as administrator</li>
  30. <li>Run the following command
  31. <div class="codeBlock PS">Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString(&#39;https://community.chocolatey.org/install.ps1&#39;))</div>
  32. </li>
  33. </ol>
  34. <h2>Testing Choco Install (optional)</h2>
  35. <ol>
  36. <li>Once the installation script completes, run the following to install Chocolatey GUI
  37. <div class="codeBlock PS"># install chocolatey GUI<br />
  38. choco install chocolateygui<br />
  39. # type &#39;a&#39; and press enter to accept all<br />
  40. # launch chocolatey GUI<br />
  41. chocolateygui</div>
  42. </li>
  43. </ol>
  44. <p>Sources: <a href="https://docs.chocolatey.org/en-us/choco/setup" target="_blank">https://docs.chocolatey.org/en-us/choco/setup</a><br />
  45. <a href="https://docs.chocolatey.org/en-us/chocolatey-gui/setup/installation" target="_blank">https://docs.chocolatey.org/en-us/chocolatey-gui/setup/installation</a></p>
  46. </div>
  47. </div>
  48. </body>
  49. </html>