- Nov 15, 2017
- 1,083
Hello, first I would like to thank the company that created the program for providing me with the information. Let's get to the bottom of it.
First you have to install Chocolatey. There is a way with CMD (The CMD method is recommended and the one I used) and another with Powershell, both are valid.
In CMD as administrator execute the following code:
In PowerShell:
With PowerShell, there is an additional step. 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.
Now run the following command:
Then execute in CMD or Powershell the following command:
Wait for it to finish and you're done! You already have a next-generation antivirus for free for a year! I hope you can use it or just try it.
Regards and thanks.
First you have to install Chocolatey. There is a way with CMD (The CMD method is recommended and the one I used) and another with Powershell, both are valid.
In CMD as administrator execute the following code:
Code:
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
In PowerShell:
With PowerShell, there is an additional step. 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.
Now run the following command:
Code:
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Then execute in CMD or Powershell the following command:
Code:
choco install deeparmor
Wait for it to finish and you're done! You already have a next-generation antivirus for free for a year! I hope you can use it or just try it.
Regards and thanks.