From 2021a1ac7d06fd70fd76f01c72ecc4584b7f73c2 Mon Sep 17 00:00:00 2001
From: Socrates <socratides@gmail.com>
Date: Sun, 22 Dec 2019 14:16:04 +0200
Subject: [PATCH] Update README.md

Added an essential step to Windows installation process (Setting ExecutionPolicy to RemoteSigned because it wouldn't install otherwise).
---
 README.md | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 2796a6f8..7e760315 100644
--- a/README.md
+++ b/README.md
@@ -33,7 +33,13 @@ This will install Rustlings and give you access to the `rustlings` command. Run
 
 ## Windows
 
-You can run:
+First, set `ExecutionPolicy` to `RemoteSigned`:
+
+```ps
+Set-ExecutionPolicy RemoteSigned
+```
+
+Then, you can run:
 
 ```ps
 Invoke-WebRequest https://git.io/rustlings-win | Select-Object -ExpandProperty Content | Out-File $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1