Am trying to install chocolatey on windows 7 64 bits. Am using documentation Here when I type the code below in the command prompt.
PowerShell Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
it throws the error as shown in the screenshots below
I do not know what the error is all about. I just added Powershell infront of the code before i runs it
The Chocolatey website requires TLS 1.2 to access it and download the installation script from.
Take a look at this blog post as it explains the change, the commands you can run in PowerShell to see if you're supported and what you can do for older legacy systems (such as Windows 7).