ExecutionPolicy
The execution policy determines how PowerShell runs scripts and configuration files. The default execution policy on most systems is "Restricted", which means that no scripts can be run, including those that you write yourself. To run scripts, you must change the execution policy to "Unrestricted" or "RemoteSigned".
When you set the execution policy to "Unrestricted", it allows all scripts to run, including those that you download from the Internet. This can be a security risk because it allows potentially malicious scripts to run on your system. So, it's recommended that you use this command only in a secure environment and with caution.
Please note that this command must be run in an elevated PowerShell session (Run as Administrator)
Set-ExecutionPolicy -ExecutionPolicy Unrestricted