fix(installation): first PowerShell command
ExecutionPolicy to RemoteSigned command was fixed because the old command was getting denied access to change the Execution Policy property
This commit is contained in:
parent
ebdb66c7bf
commit
aa9a943ddf
|
@ -36,7 +36,7 @@ This will install Rustlings and give you access to the `rustlings` command. Run
|
||||||
In PowerShell, set `ExecutionPolicy` to `RemoteSigned`:
|
In PowerShell, set `ExecutionPolicy` to `RemoteSigned`:
|
||||||
|
|
||||||
```ps
|
```ps
|
||||||
Set-ExecutionPolicy RemoteSigned
|
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, you can run:
|
Then, you can run:
|
||||||
|
|
Loading…
Reference in New Issue