1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-07 13:41:21 +00:00

Add instructions for PowerShell execution policy access

Austin Rognes 2020-02-29 02:02:00 -06:00 committed by Pablo Santiago Blum de Aguiar
parent 326f92880f
commit eec6311922

@ -51,6 +51,22 @@ Add this line **before** the line above in your Powershell `$PROFILE` on Windows
$env:PYTHONIOENCODING="utf-8"
```
To overcome PowerShell not running scripts, for which the error looks as such:
```
. : File C:\Windows\System32\WindowsPowerShell\v1.0\profile.ps1 cannot be loaded because running scripts is disabled
on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:3
```
You could set execution policy to unrestricted through the PowerShell command:
```
Set-ExecutionPolicy unrestricted
```
[Click here](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7) to read more about Microsoft's execution policies.
# tcsh
```tcsh