From 2f9e50da1544d2c72c20f00dd805e121b8f6c084 Mon Sep 17 00:00:00 2001
From: zoicware <118035521+zoicware@users.noreply.github.com>
Date: Fri, 1 Aug 2025 19:58:04 -0400
Subject: [PATCH] update script launching
---
README.md | 41 ++++++++++++++++++++++++++++++++++++-----
1 file changed, 36 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 59e8895..d5c6f71 100644
--- a/README.md
+++ b/README.md
@@ -37,14 +37,45 @@ The current 24H2 build of Windows 11 and future builds will include increasingly
---
### How to Use
- **Run From Powershell Console as Administrator**
- ```PowerShell
- iwr https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1 | iex
- ```
-
+ #### Run From Powershell Console as Administrator
+ ---
+ **Launch with UI**
+ ```PowerShell
+ & ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1")))
+ ```
+
+ Click to View UI
+
+
+
+
+
+**Run in Non-Interactive Mode with All Options**
+ ```PowerShell
+ & ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -AllOptions
+ ```
+
+**Run with Specific Options Example**
+ ```PowerShell
+ & ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -Options DisableRegKeys,RemoveNudgesKeys,RemoveAppxPackages
+ ```
+
+**All Possible Options:**
+```
+DisableRegKeys
+RemoveNudgesKeys
+DisableCopilotPolicies
+RemoveAppxPackages
+RemoveRecallFeature
+RemoveCBSPackages
+RemoveAIFiles
+HideAIComponents
+DisableRewrite
+RemoveRecallTasks
+```
---