## installing Chocolatey pachage manager! ## https://community.chocolatey.org/ # With PowerShell, you must ensure [Get-ExecutionPolicy] is not Restricted. # We suggest using Bypass to bypass the policy to get things installed or AllSigned for quite a bit more security. # Run Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or Set-ExecutionPolicy Bypass -Scope Process. # Get-ExecutionPolicy Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) # test chocolatey installation choco # or choco -?