Disable Microsoft Windows Telemetry Like Copilot Recall The Safe Way


Deprecated: Function create_function() is deprecated in /home/871538.cloudwaysapps.com/ejdwdbpxyq/public_html/wp-content/plugins/wp-spamshield/wp-spamshield.php on line 2033

Disable Microsoft Windows Telemetry Like Copilot Recall The Safe Way
Today we take a look at removing telemetry from Windows 10 and Windows 11 without using software. By using group policy on Windows 10 and Windows 11 we can decide which unwanted functions should be disabled.

Download: Remove-MS-Edge

# Function to prompt the user for confirmation

function Confirm-Action {

param (

[string]$Message

)

$confirmation = Read-Host "$Message (y/n)"

return $confirmation -eq 'y'

}

# Function to remove a given app

function Remove-App {

param (

[string]$AppName

)

if (Confirm-Action "Do you want to remove $AppName ?") {

Get-AppxPackage -Name $AppName | Remove-AppxPackage

Write-Output "$AppName removed."

} else {

Write-Output "Skipped removing $AppName"

}

}

# List apps to remove (The below example contains some default Windows apps, feel free to add your own, or remove entries)

$appsToRemove = @(

"Microsoft.3DBuilder",

"Microsoft.BingWeather",

"Microsoft.GetHelp",

"Microsoft.Getstarted",

"Microsoft.Microsoft3DViewer",

"Microsoft.MicrosoftOfficeHub",

"Microsoft.MicrosoftSolitaireCollection",

"Microsoft.MicrosoftStickyNotes",

"Microsoft.MixedReality.Portal",

"Microsoft.MSPaint",

"Microsoft.Office.OneNote",

"Microsoft.People",

"Microsoft.Print3D",

"Microsoft.SkypeApp",

"Microsoft.WindowsAlarms",

"Microsoft.WindowsCamera",

"Microsoft.WindowsFeedbackHub",

"Microsoft.WindowsMaps",

"Microsoft.WindowsSoundRecorder",

"Microsoft.XboxApp",

"Microsoft.XboxGameOverlay",

"Microsoft.XboxGamingOverlay",

"Microsoft.XboxIdentityProvider",

"Microsoft.XboxSpeechToTextOverlay",

"Microsoft.YourPhone"

)

# Loop through app list and prompt for removal

foreach ($app in $appsToRemove) {

Remove-App -AppName $app

}

# Function to set a registry key value

function Set-RegistryKey {

param (

[string]$Path,

[string]$Name,

[string]$Value

)

if (Confirm-Action "Do you want to set $Name in $Path to $Value ?") {

Set-ItemProperty -Path $Path -Name $Name -Value $Value

Write-Output "Set $Name in $Path to $Value"

} else {

Write-Output "Skipped setting $Name in $Path"

}

}

# Disable telemetry in using the registry

Set-RegistryKey -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Value 0

Write-Output "Windows Debloat completed"

CDkeysales Black Friday Sale 30% discount code : BR09
Windows 11 Pro(22$):
Windows 10 Pro(17$):
Buy Office 2016(28$):
Buy Office 2019(46$):
Sponsor: CDKEYSALES

🔔 SUBSCRIBE for more:

SUBSCRIBE for more

🛍 Support me with your Amazon purchases:
UK UK Amazon
US US Amazon

Please note that as an Amazon Associate I earn a commission from any qualifying purchases that you may make through these links.

❤️ Join Britec Youtube Members:

Join Youtube Members

📃Watch related playlists and videos

🖥️Watch related playlists and videos

👕Check out our merch:

Merch Store

💻Discord Access:

Discord Access 

🐦Follow and interact with me on Twitter:

Follow on Twitter

✅Follow and interact with me on Facebook:

Follow on Facebook 

🎬 View my Website:

View my Website

disablecopilot #disabletelemetry #windowsprivacy #removecopilot