decrapify win10
//Right click cmd > Run as Administrator net user administrator /active:yes The command completed successfully. runas /user:Administrator Powershell Enter the password for Admnistrator: Windows PowerShell Copyright (C) Microsoft Corporation. All rights reserved. Try the new cross-platform PowerShell https://aka.ms/pscore6 PS C:\windows\system32> //Edit this code and paste in PS Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*Twitter*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*Facebook*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*SlingTV*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*3dbuilder*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*solitairecollection*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*SkypeApp*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*Minecraft*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*CandyCrushSodaSaga*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*MarchofEmpires*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*MicrosoftOfficeHub*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*Getstarted*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*WindowsFeedbackHub*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*bingnews*"} | remove-appxprovisionedpackage –online Get-appxprovisionedpackage –online | where-object {$_.packagename –like "*OneConnect*"} | remove-appxprovisionedpackage –online Get-appxpackage -allusers *Twitter* | Remove-AppxPackage Get-appxpackage -allusers *Facebook* | Remove-AppxPackage Get-appxpackage -allusers *SlingTV* | Remove-AppxPackage Get-appxpackage -allusers *3dbuilder* | Remove-AppxPackage Get-appxpackage -allusers *solitairecollection* | Remove-AppxPackage Get-appxpackage -allusers *SkypeApp* | Remove-AppxPackage Get-appxpackage -allusers *Minecraft* | Remove-AppxPackage Get-appxpackage -allusers *CandyCrushSodaSaga* | Remove-AppxPackage Get-appxpackage -allusers *MarchofEmpires* | Remove-AppxPackage Get-appxpackage -allusers *MicrosoftOfficeHub* | Remove-AppxPackage Get-appxpackage -allusers *Getstarted* | Remove-AppxPackage Get-appxpackage -allusers *WindowsFeedbackHub* | Remove-AppxPackage Get-appxpackage -allusers *bingnews* | Remove-AppxPackage Get-appxpackage -allusers *OneConnect* | Remove-AppxPackage //source.code These are reg file saved that turns off some other crapware options that Windows 10 throws in there, you can see that here: [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager] "SilentInstalledAppsEnabled"=dword:00000000 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\ContentDeliveryManager] "SystemPaneSuggestionsEnabled"=dword:00000000 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent] "DisableWindowsConsumerFeatures"=dword:00000001 //source.code More? Read -
How to use Powershell to view what apps are installed
How to use Powershell to remove default apps
How to use Powershell to reinstall default apps
//Discussion














