update script launching

This commit is contained in:
zoicware
2025-08-01 19:58:04 -04:00
committed by GitHub
parent d87359a27d
commit 2f9e50da15

View File

@@ -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**
#### Run From Powershell Console as Administrator
---
**Launch with UI**
```PowerShell
iwr https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1 | iex
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1")))
```
<img width="586" height="693" alt="Capture2" src="https://github.com/user-attachments/assets/5566675c-dbaf-4df9-84d7-f25e3c8ede0e" />
<details>
<summary>Click to View UI</summary>
<img width="586" height="693" alt="Capture2" src="https://github.com/user-attachments/assets/5566675c-dbaf-4df9-84d7-f25e3c8ede0e" />
</details>
&nbsp;
**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
```
---