Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ winget uninstall --name "Copilot" --exact --all-versions
```


#### Explorer: Ask Copilot
#### Explorer: Ask Copilot (HKLM)

##### Command to manually apply:

Expand All @@ -1393,6 +1393,29 @@ Remove-ItemProperty -Path "Registry::HKLM\SOFTWARE\Microsoft\Windows\CurrentVers
* Remove 'Ask Copilot' from Right-Click Menu in File Explorer.


#### Explorer: Ask Copilot (HKCU)

##### Command to manually apply:

```ps
Set-ItemProperty -Path "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked"`
-Name "{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}"`
-Type "String"`
-Value ""
```

##### Command to manually revert:

```ps
Remove-ItemProperty -Path "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked"`
-Name "{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}"
```

##### Notes:

* Remove 'Ask Copilot' from Right-Click Menu in File Explorer (per-user hive — required on recent Windows 11 builds). Restart Explorer to take effect.


#### Copilot Notepad

##### Command to manually apply:
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<NoWarn>CA1416;NU1608;NU1109</NoWarn>
<Version>1.14.0</Version>
<Version>1.14.1</Version>
<LangVersion>preview</LangVersion>
<PackageTags>Windows, Debloat</PackageTags>
<Description>A utility to debloat Windows</Description>
Expand Down
11 changes: 10 additions & 1 deletion src/WinDebloat/Program_Groups.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,18 @@
"{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}",
"",
null,
"Explorer: Ask Copilot",
"Explorer: Ask Copilot (HKLM)",
RegistryValueKind.String,
Notes: " * Remove 'Ask Copilot' from Right-Click Menu in File Explorer."),
new RegistryValueJob(
RegistryHive.CurrentUser,
@"Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked",
"{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}",
"",
null,
"Explorer: Ask Copilot (HKCU)",
RegistryValueKind.String,
Notes: " * Remove 'Ask Copilot' from Right-Click Menu in File Explorer (per-user hive — required on recent Windows 11 builds). Restart Explorer to take effect."),
new RegistryValueJob(
RegistryHive.LocalMachine,
@"SOFTWARE\Policies\WindowsNotepad",
Expand Down
25 changes: 24 additions & 1 deletion src/actions.include.md
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ winget uninstall --name "Copilot" --exact --all-versions
```


#### Explorer: Ask Copilot
#### Explorer: Ask Copilot (HKLM)

##### Command to manually apply:

Expand All @@ -1327,6 +1327,29 @@ Remove-ItemProperty -Path "Registry::HKLM\SOFTWARE\Microsoft\Windows\CurrentVers
* Remove 'Ask Copilot' from Right-Click Menu in File Explorer.


#### Explorer: Ask Copilot (HKCU)

##### Command to manually apply:

```ps
Set-ItemProperty -Path "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked"`
-Name "{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}"`
-Type "String"`
-Value ""
```

##### Command to manually revert:

```ps
Remove-ItemProperty -Path "Registry::HKCU\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked"`
-Name "{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}"
```

##### Notes:

* Remove 'Ask Copilot' from Right-Click Menu in File Explorer (per-user hive — required on recent Windows 11 builds). Restart Explorer to take effect.


#### Copilot Notepad

##### Command to manually apply:
Expand Down
Loading