79201921

Date: 2024-11-19 02:21:50
Score: 0.5
Natty:
Report link

PowerShell will not allow you to execute scripts at will. You can change that behavior by running this in an elevated terminal (run as admin):

Set-ExecutionPolicy Unrestricted

The documentation is here.

-Edit-

Adding the -Scope Process flag is generally encouraged.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Tim R. Jensen