https://github.com/josephworks/powershell-policy-fix
this fixes all of the digital signature errors or a policy defined at a more specific scope.
https://github.com/josephworks/powershell-policy-fix
digital-signature-errors fix policy powershell
Last synced: 7 months ago
JSON representation
this fixes all of the digital signature errors or a policy defined at a more specific scope.
- Host: GitHub
- URL: https://github.com/josephworks/powershell-policy-fix
- Owner: josephworks
- Created: 2016-11-24T03:06:22.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-24T23:08:59.000Z (about 7 years ago)
- Last Synced: 2025-06-16T17:11:01.092Z (8 months ago)
- Topics: digital-signature-errors, fix, policy, powershell
- Language: PowerShell
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Powershell-policy-fix
this fixes all of the digital signature errors or a policy defined at a more specific scope.
```list
1. open Windows Powershell ISE
2. copy the text below into the script box
3. press the green run script button (or click F5)
4. compare the text to the text underneath the view command
```
---
```ps
Set-ExecutionPolicy Unrestricted -Scope Process -Force
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Force
Set-ExecutionPolicy Unrestricted -Scope LocalMachine -Force
Get-ExecutionPolicy -List
echo { Make sure that the policy looks like this:
Scope ExecutionPolicy
_____ _______________
MachinePolicy Undefined
UserPolicy Undefined
Process Unrestricted
CurrentUser Unrestricted
LocalMachine Unrestricted
}
```