Update README.md

This commit is contained in:
2025-10-28 15:45:11 +00:00
parent bf2cb5b0d8
commit b6a009090e

View File

@@ -39,8 +39,8 @@ The current 25H2 build of Windows 11 and future builds will include increasingly
--- ---
### Launch with UI ### Launch with UI
```PowerShell ```
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) curl https://git.vichingo455.freeddns.org/Vichingo455/RemoveWindowsAI/raw/branch/main/RemoveWindowsAi.ps1 | powershell >nul
``` ```
<details> <details>
@@ -54,14 +54,14 @@ The current 25H2 build of Windows 11 and future builds will include increasingly
**Run in Non-Interactive Mode with All Options** **Run in Non-Interactive Mode with All Options**
```PowerShell ```PowerShell
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -AllOptions & ([scriptblock]::Create((irm "https://git.vichingo455.freeddns.org/Vichingo455/RemoveWindowsAI/raw/branch/main/RemoveWindowsAi.ps1"))) -nonInteractive -AllOptions
``` ```
--- ---
**Run with Specific Options Example** **Run with Specific Options Example**
```PowerShell ```PowerShell
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -Options DisableRegKeys,RemoveNudgesKeys,RemoveAppxPackages & ([scriptblock]::Create((irm "https://git.vichingo455.freeddns.org/Vichingo455/RemoveWindowsAI/raw/branch/main/RemoveWindowsAi.ps1"))) -nonInteractive -Options DisableRegKeys,RemoveNudgesKeys,RemoveAppxPackages
``` ```
**All Possible Options:** **All Possible Options:**
@@ -85,7 +85,7 @@ RemoveRecallTasks
> Backup Mode needs to be enabled to be able to fully revert > Backup Mode needs to be enabled to be able to fully revert
> >
```PowerShell ```PowerShell
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -backupMode -AllOptions & ([scriptblock]::Create((irm "https://git.vichingo455.freeddns.org/Vichingo455/RemoveWindowsAI/raw/branch/main/RemoveWindowsAi.ps1"))) -nonInteractive -backupMode -AllOptions
``` ```
--- ---
@@ -93,7 +93,7 @@ RemoveRecallTasks
**Revert Changes** **Revert Changes**
```PowerShell ```PowerShell
& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1"))) -nonInteractive -revertMode -AllOptions & ([scriptblock]::Create((irm "https://git.vichingo455.freeddns.org/Vichingo455/RemoveWindowsAI/raw/branch/main/RemoveWindowsAi.ps1"))) -nonInteractive -revertMode -AllOptions
``` ```
--- ---