How to Fix PowerShell is Not Digitally Signed Error: 3 Ways
- Check and change the Execution Policy
Get-ExecutionPolicy if restricted then type:
Set-ExecutionPolicy -ExecutionPolicy unrestricted
Confirm by typing Get-ExecutionPolicy
- Bypass the current PowerShell session
Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
- Unblock the file that was downloaded
PS C:> Unblock-File -Path C:\script\ filename
Kon Belieu
Comments are closed