diff --git a/README.md b/README.md index a6c3540..aa96361 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,20 @@ Compile.ps1 repository. ## Installation -Copy [compile.ps1](compile.ps1) to your maps directory and unblock the script with ```Unblock-File```: +First [compile.ps1](compile.ps1) to your maps directory and unblock the script with ```Unblock-File```: ```powershell Unblock-File compile.ps1 ``` +Then open an _Administrative_ powershell prompt and update your powershell execution policy to allow unsigned scripts from remote sources: +```powershell +Set-ExecutionPolicy RemoteSigned +``` +And answer with A: + +![Execution Policy](images/execution_policy.png) + ## Usage ### All-Cores mode diff --git a/images/execution_policy.png b/images/execution_policy.png new file mode 100644 index 0000000..a6d39cd Binary files /dev/null and b/images/execution_policy.png differ