From 27ba5fdfb3f8d828636a2f433603268ddf30fa3b Mon Sep 17 00:00:00 2001
From: Cem Aksoylar <caksoylar@gmail.com>
Date: Fri, 11 Feb 2022 21:23:23 -0800
Subject: [PATCH] fix(docs): Improve powershell command for setup script for
 failure cases

---
 docs/docs/user-setup.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/docs/user-setup.md b/docs/docs/user-setup.md
index de47680f..faa4bef8 100644
--- a/docs/docs/user-setup.md
+++ b/docs/docs/user-setup.md
@@ -82,7 +82,7 @@ bash -c "$(wget https://zmk.dev/setup.sh -O -)" '' --wget
 <TabItem value="PowerShell">
 
 ```
-iex ((New-Object System.Net.WebClient).DownloadString('https://zmk.dev/setup.ps1'))
+powershell -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://zmk.dev/setup.ps1'))"
 ```
 
 </TabItem>