Hi I edited post now have this I create this Get-AppXPackage | Select Name Get-AppXPackage -AllUsers | Select Name Get-AppXProvisionedPackage -Online | Select Name then save in text file all. Next Uninstalled from current administrator user. Get-AppxPackage * | Remove-AppxPackage * - is application for remove Next step remove from all users and online. I use created list for all application remove Spoiler Code: $ProvisionedAppPackageNames = @( "Microsoft.3DBuilder" "Microsoft.BioEnrollment" "Microsoft.BingWeather" "Microsoft.Getstarted" "Microsoft.Messaging" "Microsoft.MicrosoftOfficeHub" "Microsoft.MicrosoftSolitaireCollection" "Microsoft.MicrosoftStickyNotes" "Microsoft.Office.OneNote" "Microsoft.OneConnect" "Microsoft.People" "Microsoft.SkypeApp" "Microsoft.Windows.Photos"Microsoft.WindowsAlarms "Microsoft.WindowsCalculator" "Microsoft.WindowsCamera" "microsoft.windowscommunicationsapps" "Microsoft.WindowsFeedbackHub" "Microsoft.WindowsMaps" "Microsoft.WindowsSoundRecorder" "Microsoft.XboxApp" "Microsoft.XboxIdentityProvider" "Microsoft.ZuneMusic" "Microsoft.ZuneVideo" ) foreach ($ProvisionedAppName in $ProvisionedAppPackageNames) { Get-AppxPackage -Name $ProvisionedAppName -AllUsers | Remove-AppxPackage Get-AppXProvisionedPackage -Online | where DisplayName -EQ $ProvisionedAppName | Remove-AppxProvisionedPackage -Online } Is this ok or need fixing? And now problem for me is for hidden and uninstall some other apps from this HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\ how to make best remove.
What are the most commonly suggested packages and other parts of Win10 to be removed in order to maximize performance? As in reduce used up CPU time, RAM, disk space even network bandwidth. I don't need Cortana or it knowing where all my files are.
LOL. Everyone knows where your files are. It is what they do with them which counts. A search function enables your computer to find what you look for quickly.
@iec85433 I think you need help inside MDL ok so wait MSMG toolkit v.6.0 read how to and proceed all changes that you desired;still welcome to MDL
Not sure anymore if it wasn't intended from me not to use the * in the name. But yeah the AskImage needed to be shifted, saw it after publishing it but was to lazy to fix it. - good job.