An open API service indexing awesome lists of open source software.

https://github.com/sjoerdev/powershell-security-policy

how to disable the powershell security policy
https://github.com/sjoerdev/powershell-security-policy

Last synced: 4 months ago
JSON representation

how to disable the powershell security policy

Awesome Lists containing this project

README

          

# how to deal with the powershell security policy

```powershell
# list the current policy (no admin)
Get-ExecutionPolicy -List

# bypass current user (no admin)
Set-ExecutionPolicy Bypass -Scope CurrentUser -Force

# bypass whole machine (admin required)
Set-ExecutionPolicy Bypass -Scope LocalMachine -Force
```