How to remove default windows 10 apps from all + new users accounts?

Discussion in 'Windows 10' started by Deleted member 1032214, Jun 6, 2018.

  1. #1 Deleted member 1032214, Jun 6, 2018
    Last edited by a moderator: Sep 21, 2018
  2. sr3tlaw

    sr3tlaw MDL Novice

    Jun 26, 2013
    40
    8
    0
    What were your findings?
     
  3. i stopped looking for solutions, now i like windows 10 pro as it is with all of its apps,my hate turned into love.:gkiss:
     
  4. sr3tlaw

    sr3tlaw MDL Novice

    Jun 26, 2013
    40
    8
    0
    An underdog story! Haha.

    Hate it or love it. I run OEM 10 Pro on the Targeted Channel (CBB) because it's what the majority world uses. Plus when they add new features, I get to make fun of Microsoft more to my clients. "What's 3D objects, Craig?, oh its Microsoft's bulls**t" lol
     
  5. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,897
    10,733
    240
    for any user of windows it is fundamental to know, learn and understand the functions of PowerShell 6.01 before deleting, hiding some things so that the operating system can work correctly this for me is the best way to continue using Windows (10) before EVERYONE can use a free operating system which for me should be the best solution sorry M $ FT, because when I bought the system I trusted but now I can not rely anymore, I do not need a useless gift shop I just need DirectX to games I'm just betting everything on the Vulkan + AMD team to see if it's possible to change if this happens the world will turn ;)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,694
    60
    PowerShell cmdlets already provide some idiot-proofing in 1803 and later, and does not allow you to remove many system applications that other s**t depends on.
    The provisioned ones also needs a bit more work.
    Repairing system applications unfortunately cannot be 100%, because some files and registry keys are not bundled with the package.
    Code:
    echo "Repair non responsive search / taskbar / explorer side-effect"
    taskkill /im explorer.exe /f
    taskkill /im SearchUI.exe /t /f
    taskkill /im WindowsInternal.ComposableShell.Experiences.TextInput.InputApp.exe /t /f
    Get-AppXPackage -AllUsers |Where-Object {$_.SignatureKind -Like "*System*"} | Foreach {write-host $_.InstallLocation; try{ Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml" -erroraction 'silentlycontinue' }catch{echo err} } <#
    powershell -c "Get-AppXPackage -AllUsers |Where-Object {$_.SignatureKind -Like \"*System*\"} | Foreach {write-host $_.InstallLocation; try{ Add-AppxPackage -DisableDevelopmentMode -Register \"$($_.InstallLocation)\AppXManifest.xml\" -erroraction 'silentlycontinue' }catch{echo err} }" &rem #>
    explorer
    echo done
    
    So, just be careful of scripts involving taking ownership and deleting files. Try not to touch system applications. Use PowerShell commands with explicit names of packages you want removed.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. sr3tlaw

    sr3tlaw MDL Novice

    Jun 26, 2013
    40
    8
    0
    What is special about 6.01?
    This caught my eye
     
  8. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,897
    10,733
    240
    simple friend search;)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. Leonardo Da Vinci

    Leonardo Da Vinci MDL Novice

    Jun 10, 2017
    7
    2
    0
    Get-AppxPackage -allusers | Remove-AppxPackage
    You can try this.
     
  10. #12 Deleted member 1032214, Sep 20, 2018
    Last edited by a moderator: Nov 12, 2018
    (OP)
    dism++ can remove provisioned apps, and later created new accounts don't have those removed apps
     
  11. moistbuns

    moistbuns MDL Novice

    Jan 30, 2015
    35
    6
    0
    NTLite > Load an extracted ISO > untick the apps / provisioned apps > export.

    Works with the free version and also strips out Microsoft Edge. I think the only remaining apps are Cortana and Store. Anything else can be downloaded from Store; plus ISOs tend to still need Store Updates out of the box, so you may as well strip out everything and save HDD space, then download what you want.

    There are some dependencies there (and NTlite doesn't tell you about them), can't remember what they are but you'll want to Google some of the provisioned apps as some are needed - so remember to reselect a few things or you'll potentially find yourself in a tight spot.

    Also handy stripping out all languages except the ones you'll use. Shaves off a bit. Unfortunately the free version is restricted to apps, language packs and a few other bits and bobs. Windows is very modular but the free version reduces the chances of end-users being able to make a botched Windows install.
     
  12. RideTheLightning

    RideTheLightning MDL Member

    Sep 20, 2018
    180
    183
    10
    Is this what you are looking for?

    Code:
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.BingWeather_4.22.3254.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.DesktopAppInstaller_1.10.16004.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.GetHelp_10.1706.1981.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Getstarted_6.5.2851.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Messaging_2017.1026.259.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Microsoft3DViewer_2.1801.4012.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftOfficeHub_2017.715.118.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftSolitaireCollection_3.17.8162.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MicrosoftStickyNotes_2.0.5.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.MSPaint_3.1712.7027.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Office.OneNote_2015.8366.57611.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.OneConnect_3.1710.3044.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.People_2017.1214.153.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Print3D_1.0.2572.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.SkypeApp_11.18.596.0_neutral_~_kzf8qxf38zg5c
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.StorePurchaseApp_11712.1712.12034.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Wallet_1.0.16328.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Windows.Photos_2017.39101.16720.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsAlarms_2017.1202.31.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsCalculator_2017.1201.1912.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsCamera_2017.921.10.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:microsoft.windowscommunicationsapps_2015.8730.21725.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsFeedbackHub_1.1705.2121.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsMaps_2017.1003.1829.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsSoundRecorder_2017.1201.1914.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.WindowsStore_11711.1001.513.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.Xbox.TCUI_1.11.29001.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxApp_31.32.16002.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxGameOverlay_1.24.5001.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxIdentityProvider_2017.605.1240.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.XboxSpeechToTextOverlay_1.21.13002.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneMusic_2019.17086.24711.0_neutral_~_8wekyb3d8bbwe
    DISM /Online /Remove-ProvisionedAppxPackage /PackageName:Microsoft.ZuneVideo_2019.17112.13411.0_neutral_~_8wekyb3d8bbwe
    
     
  13. thanks but i'm looking for online solution, don't want to edit iso.
    thats probably what i'm looking for, but this doesn't seem to work in 1803, probably app codes are not matching.
    anyway thanks, :) i'll figure out the correct codes.
     
  14. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,897
    10,733
    240
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. the caretaker

    the caretaker MDL Novice

    Aug 7, 2015
    1
    0
    0
    In 1809, the removal of the apps (Xbox ) not works
     
  16. tamas970

    tamas970 MDL Novice

    Nov 13, 2013
    14
    5
    0
    Same here, working on an offline iso to prepare for deployment:

    Code:
    C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM>Dism /image:C:\wim /Remove-ProvisionedAppxPackage /PackageName:MicrosoftWindowsCamera_2018.425.120.0_neutral_~_8wekyb3d8bbwe\
    Error message:
    Code:
    Deployment Image Servicing and Management tool
    Version: 10.0.17763.1
    
    Image Version: 10.0.17763.195
    
    Error: 87
    
    The parameter is incorrect.
    up-to date ADK, up-to date package name, same command I used before, for older builds.