Hello winutil team add this tweak right now this tweak removes copliot and most of bing ai removal and privacy enchanted tweaks that i did heres the script (note: haven't tested it yet)
Here it is:
PowerShell script to modify Microsoft Edge, Windows Explorer, and Group Policy settings
Function to disable CoPilot feature in Edge
function DisableEdgeCoPilot {
$edgeRegistryPath = "HKCU:\Software\Microsoft\Edge"
Function to disable search box suggestions in Windows Explorer
function DisableSearchBoxSuggestions {
$explorerRegistryPath = "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer"
# Create Explorer registry path if it doesn't exist
if (!(Test-Path $explorerRegistryPath)) {
New-Item -Path $explorerRegistryPath -Force | Out-Null
}
# Set registry key to disable search box suggestions
Set-ItemProperty -Path $explorerRegistryPath -Name "DisableSearchBoxSuggestions" -Value 1 -Type DWord -Force | Out-Null
Write-Host "Search box suggestions disabled in Windows Explorer."
}
Function to configure Group Policy to remove CoPilot from taskbar
function ConfigureGroupPolicyToRemoveCoPilot {
$gpRegistryPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
# Create Explorer policies registry path if it doesn't exist
if (!(Test-Path $gpRegistryPath)) {
New-Item -Path $gpRegistryPath -Force | Out-Null
}
# Set registry key to remove CoPilot from taskbar
Set-ItemProperty -Path $gpRegistryPath -Name "NoWindowsCopilotTaskbar" -Value 1 -Type DWord -Force | Out-Null
Write-Host "CoPilot removed from taskbar via Group Policy."
Hello winutil team add this tweak right now this tweak removes copliot and most of bing ai removal and privacy enchanted tweaks that i did heres the script (note: haven't tested it yet) Here it is:
PowerShell script to modify Microsoft Edge, Windows Explorer, and Group Policy settings
Function to disable CoPilot feature in Edge
function DisableEdgeCoPilot { $edgeRegistryPath = "HKCU:\Software\Microsoft\Edge"
}
Function to disable Bing AI and privacy enhancements
function DisableBingAIAndPrivacyEnhancements {
Placeholder function - Replace with actual registry modifications
}
Function to disable search box suggestions in Windows Explorer
function DisableSearchBoxSuggestions { $explorerRegistryPath = "HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer"
}
Function to configure Group Policy to remove CoPilot from taskbar
function ConfigureGroupPolicyToRemoveCoPilot { $gpRegistryPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer"
}
Main script execution
DisableEdgeCoPilot DisableBingAIAndPrivacyEnhancements DisableSearchBoxSuggestions ConfigureGroupPolicyToRemoveCoPilot
Write-Host "Edge browser, Bing AI, Windows Explorer, and Group Policy settings modified successfully."