Solution: Microsoft.PowerShell_profile.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see “get-help about_signing” for more details.
Posted in PowerShell
Solution: Microsoft.PowerShell_profile.ps1 cannot be loaded because the execution of scripts is disabled on this system. Please see “get-help about_signing” for more details.
Check the current execution-policy
PS C:\Windows\System32> Get-ExecutionPolicy
Restricted
PS C:\Windows\System32>
To change the current execution-policy use:
Note: this command must be run elevated (Start Powershell using ‘Run as Administrator’)
PS C:\Windows\System32> Set-Executionpolicy -ExecutionPolicy Unrestricted
Awesome, thx! I will have to file this away for next time so I don’t have to look it up yet again…
WARNİNG:”GET-HELP ABOUT_SİGNİNG FOR MORE DETAİLS BECAUSE THE EXECUTİON OF SCRİPTS İS DİSABLED ON THİS SYSTEM”.
I don’t get it what do I do to un disable this script in simple language please.
Thank You
[…] script, I needed to change a “permission” and ultimately found the syntax in this post: Solution: Microsoft.PowerShell profile.ps1 cannot be loaded because the execution of scripts is disa…. Be mindful to start PowerShell using ‘Run as […]
Thank you very much.