excuse me for bumping this one.... After reading lots...i like to test cbsenum to remove packages... I have no clue howto run this tool? There's no exe in the zip? Noticed cbsenum_x64.exe but can't find it... Thx for any tips Code: ### Fully Automatic Removing Packages / Lite'en Windows 10 / 8.x, by Lite8@MDL / Aviv00@MSFN ### #Get packages list excluding en-us packages $s = dir c:\Windows\servicing\Packages\*.cat -Exclude *en-US*,*en-*Package* # Filter Packages $s = (dir $s -Include *WindowsFeedback*,*Windows-Skype-ORTC*,*Windows-Prerelease*,*Windows-DiagTrack*,*Windows-ContactSupport*,*OneCore-Maps*,*OneDrive*,*TroubleShooting*,*Search2*,*Cortana*,*Xbox*,*Defender* -Exclude *AutoMerged-xbox*).BaseName #Count $s; $s.count # cd "HKLM:\Software\Microsoft\windows\CurrentVersion\Component Based Servicing\Packages" # Remove Owners from reg $s | foreach { join-path $PSItem \owners | rd } #Set location to c: c: #Remove packages 3.5 $s | out-file packagesfile.txt #Run cbsenum,File, Uninstall by txt, choose packagesfile.txt, restart, DONE
cbsenum need to be run as Trusted Installer (look up in google or here ) right click on the package, manage -> decouple then uninstall the code is for running in powershell also with system or Trusted Installer privilege
Anyone knows how to make a bulk (script) removal with CBSEnum? I mean... does it have any kind of cmdlet?