Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 17778

Simple way to temporarily bypass PowerShell execution policy

$
0
0

One of the PowerShell challenges challenges I am constantly confronted with is dealing with running scripts on systems is blocked due to the security policy.  This is particularly cumbersome while writing or debugging new scripts.  Normally it is prudent to avoid lowering the overall security of the system by using the Set-ExecutionPolicy cmdlet and I often forget to return the system to the default state when done.  There is a simple way to solve this problem.

From the run dialog (or command prompt) just execute “powershell –ExecutionPolicy Bypass” and it will start a PowerShell session that allows for running scripts and keeps the lowered permissions isolated to just the current running process.


Viewing all articles
Browse latest Browse all 17778

Trending Articles