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
+```
---