CMD or PowerShell to remove Copilot and Microsoft Teams?

Get-AppxPackage -Name "Microsoft.Teams" | Remove-AppxPackage

Get-AppxPackage -Name "Copilot" | Remove-AppxPackage
 
Copy this to a reg file, and load from the Registry screen:
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Communications]
ConfigureChatAutoInstall=0

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001

Copy this to a reg file, and load from Post-Setup (User):
Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001
 
Copy this to a reg file, and load from the Registry screen:
Code:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Communications]
ConfigureChatAutoInstall=0

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001

Copy this to a reg file, and load from Post-Setup (User):
Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot]
"TurnOffWindowsCopilot"=dword:00000001

this way? is it okay like this?


View attachment 11360View attachment 11361
 
Correct. If you apply both reg files, there is no need for the PS commands (remove them).

In fact, there is no "Copilot" App package. PowerShellUser is wrong.
 
Back
Top