Skip to content

sjoerdev/powershell-security-policy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

how to deal with the powershell security policy

# 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

About

how to disable the powershell security policy

Resources

Stars

Watchers

Forks

Contributors