diff --git a/README.md b/README.md index 9777a5c..71c54be 100644 --- a/README.md +++ b/README.md @@ -73,4 +73,22 @@ To open the profile configuration My personal [profile](./DeveloperProfile.ps1). -A comprehensive sample for PSReadLine you can find on [GitHub](https://github.com/PowerShell/PSReadLine/blob/master/PSReadLine/SamplePSReadLineProfile.ps1). \ No newline at end of file +A comprehensive sample for PSReadLine you can find on [GitHub](https://github.com/PowerShell/PSReadLine/blob/master/PSReadLine/SamplePSReadLineProfile.ps1). + +## Problem Solutions + +### Execution Policies + +In case you get an execution-policies error like that + +![alt text](images/execution-policies_error.png) + +you can check your policies with +``` +Get-ExecutionPolicy -List +``` + +and change it with the following command (run powershell as administrator) +``` +Set-ExecutionPolicy -ExecutionPolicy Undefined -Scope LocalMachine +``` \ No newline at end of file diff --git a/images/execution-policies_error.png b/images/execution-policies_error.png new file mode 100644 index 0000000..d9d0516 Binary files /dev/null and b/images/execution-policies_error.png differ