I'm trying to download the chocolatey software on my windows laptop (https://chocolatey.org/) using powershell. My only problem is, that I get an error when I execute the download command line in powershell. Whenever I execute the download command it says:
This script contains malicious content and has been blocked by your antivirus software.
The script I'm using is:
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'))