mirror of
https://github.com/Sycnex/Windows10Debloater.git
synced 2025-05-10 07:32:09 +00:00
commit
5849e9c6d9
@ -44,7 +44,7 @@ Function DebloatAll {
|
|||||||
Microsoft.BioEnrollment|Microsoft.CredDialogHost|Microsoft.ECApp|Microsoft.LockApp|Microsoft.MicrosoftEdgeDevToolsClient|Microsoft.MicrosoftEdge|Microsoft.PPIProjection|Microsoft.Win32WebViewHost|Microsoft.Windows.Apprep.ChxApp|`
|
Microsoft.BioEnrollment|Microsoft.CredDialogHost|Microsoft.ECApp|Microsoft.LockApp|Microsoft.MicrosoftEdgeDevToolsClient|Microsoft.MicrosoftEdge|Microsoft.PPIProjection|Microsoft.Win32WebViewHost|Microsoft.Windows.Apprep.ChxApp|`
|
||||||
Microsoft.Windows.AssignedAccessLockApp|Microsoft.Windows.CapturePicker|Microsoft.Windows.CloudExperienceHost|Microsoft.Windows.ContentDeliveryManager|Microsoft.Windows.Cortana|Microsoft.Windows.NarratorQuickStart|`
|
Microsoft.Windows.AssignedAccessLockApp|Microsoft.Windows.CapturePicker|Microsoft.Windows.CloudExperienceHost|Microsoft.Windows.ContentDeliveryManager|Microsoft.Windows.Cortana|Microsoft.Windows.NarratorQuickStart|`
|
||||||
Microsoft.Windows.ParentalControls|Microsoft.Windows.PeopleExperienceHost|Microsoft.Windows.PinningConfirmationDialog|Microsoft.Windows.SecHealthUI|Microsoft.Windows.SecureAssessmentBrowser|Microsoft.Windows.ShellExperienceHost|`
|
Microsoft.Windows.ParentalControls|Microsoft.Windows.PeopleExperienceHost|Microsoft.Windows.PinningConfirmationDialog|Microsoft.Windows.SecHealthUI|Microsoft.Windows.SecureAssessmentBrowser|Microsoft.Windows.ShellExperienceHost|`
|
||||||
Microsoft.Windows.XGpuEjectDialog|Microsoft.XboxGameCallableUI|Windows.CBSPreview|windows.immersivecontrolpanel|Windows.PrintDialog|Microsoft.VCLibs.140.00|Microsoft.Services.Store.Engagement|Microsoft.UI.Xaml.2.0'|*Nvidia*
|
Microsoft.Windows.XGpuEjectDialog|Microsoft.XboxGameCallableUI|Windows.CBSPreview|windows.immersivecontrolpanel|Windows.PrintDialog|Microsoft.VCLibs.140.00|Microsoft.Services.Store.Engagement|Microsoft.UI.Xaml.2.0|*Nvidia*'
|
||||||
Get-AppxPackage -AllUsers | Where-Object {$_.Name -NotMatch $WhitelistedApps -and $_.Name -NotMatch $NonRemovable} | Remove-AppxPackage
|
Get-AppxPackage -AllUsers | Where-Object {$_.Name -NotMatch $WhitelistedApps -and $_.Name -NotMatch $NonRemovable} | Remove-AppxPackage
|
||||||
Get-AppxPackage | Where-Object {$_.Name -NotMatch $WhitelistedApps -and $_.Name -NotMatch $NonRemovable} | Remove-AppxPackage
|
Get-AppxPackage | Where-Object {$_.Name -NotMatch $WhitelistedApps -and $_.Name -NotMatch $NonRemovable} | Remove-AppxPackage
|
||||||
Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -NotMatch $WhitelistedApps -and $_.PackageName -NotMatch $NonRemovable} | Remove-AppxProvisionedPackage -Online
|
Get-AppxProvisionedPackage -Online | Where-Object {$_.PackageName -NotMatch $WhitelistedApps -and $_.PackageName -NotMatch $NonRemovable} | Remove-AppxProvisionedPackage -Online
|
||||||
@ -97,6 +97,7 @@ Function DebloatBlacklist {
|
|||||||
"*Duolingo-LearnLanguagesforFree*"
|
"*Duolingo-LearnLanguagesforFree*"
|
||||||
"*PandoraMediaInc*"
|
"*PandoraMediaInc*"
|
||||||
"*CandyCrush*"
|
"*CandyCrush*"
|
||||||
|
"*BubbleWitch3Saga*"
|
||||||
"*Wunderlist*"
|
"*Wunderlist*"
|
||||||
"*Flipboard*"
|
"*Flipboard*"
|
||||||
"*Twitter*"
|
"*Twitter*"
|
||||||
@ -305,7 +306,7 @@ Function Protect-Privacy {
|
|||||||
$CloudStore = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore'
|
$CloudStore = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore'
|
||||||
If (Test-Path $CloudStore) {
|
If (Test-Path $CloudStore) {
|
||||||
Stop-Process Explorer.exe -Force
|
Stop-Process Explorer.exe -Force
|
||||||
Remove-Item $CloudStore
|
Remove-Item $CloudStore -Recurse -Force
|
||||||
Start-Process Explorer.exe -Wait
|
Start-Process Explorer.exe -Wait
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -79,6 +79,7 @@ $global:Bloatware = @(
|
|||||||
"Duolingo-LearnLanguagesforFree"
|
"Duolingo-LearnLanguagesforFree"
|
||||||
"PandoraMediaInc"
|
"PandoraMediaInc"
|
||||||
"CandyCrush"
|
"CandyCrush"
|
||||||
|
"BubbleWitch3Saga"
|
||||||
"Wunderlist"
|
"Wunderlist"
|
||||||
"Flipboard"
|
"Flipboard"
|
||||||
"Twitter"
|
"Twitter"
|
||||||
@ -696,10 +697,10 @@ $RemoveAllBloatware.Add_Click( {
|
|||||||
|
|
||||||
|
|
||||||
Write-Host "Removing CloudStore from registry if it exists"
|
Write-Host "Removing CloudStore from registry if it exists"
|
||||||
$CloudStore = 'HKCUSoftware\Microsoft\Windows\CurrentVersion\CloudStore'
|
$CloudStore = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore'
|
||||||
If (Test-Path $CloudStore) {
|
If (Test-Path $CloudStore) {
|
||||||
Stop-Process Explorer.exe -Force
|
Stop-Process Explorer.exe -Force
|
||||||
Remove-Item $CloudStore
|
Remove-Item $CloudStore -Recurse -Force
|
||||||
Start-Process Explorer.exe -Wait
|
Start-Process Explorer.exe -Wait
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -174,10 +174,10 @@ Function Protect-Privacy {
|
|||||||
|
|
||||||
|
|
||||||
Write-Output "Removing CloudStore from registry if it exists"
|
Write-Output "Removing CloudStore from registry if it exists"
|
||||||
$CloudStore = 'HKCUSoftware\Microsoft\Windows\CurrentVersion\CloudStore'
|
$CloudStore = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\CloudStore'
|
||||||
If (Test-Path $CloudStore) {
|
If (Test-Path $CloudStore) {
|
||||||
Stop-Process Explorer.exe -Force
|
Stop-Process Explorer.exe -Force
|
||||||
Remove-Item $CloudStore
|
Remove-Item $CloudStore -Recurse -Force
|
||||||
Start-Process Explorer.exe -Wait
|
Start-Process Explorer.exe -Wait
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user