MDT 8456 remove "Todo" app from install.win file MDT 8456

John Cerocke 1 Reputation point
2020-11-20T16:49:43.577+00:00

I'm trying to make a new image for Windows 10 20H2.
I can remove all the apps from the install.wim that I want except the Todo app.
If I uninstall it after deployment I get a blank tile in the start menu and I can't delete it.

This is holding up from deploying 20H2.

Thanks
John

Microsoft Deployment Toolkit
Microsoft Deployment Toolkit
A collection of Microsoft tools and documentation for automating desktop and server deployment. Previously known as Microsoft Solution Accelerator for Business Desktop Deployment (BDD).
833 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. BenFloydyWork 21 Reputation points
    2020-11-27T10:48:27.103+00:00

    Hi John,

    I'm not familar with this app or why you have it in your image in the first place (it's not a standard install on Enterprise at least from what I can see).

    However, you could try the following generic method, which I use to clean up the Language Pack amongst others -

    In a Powershell Administrative Window (Run As Admin) -

    get-appxpackage -allusers | select name, packagefullname

    Look for your ToDo app on the list (this is not alphabetical), and then mouse-over COPY just the packagefullname (on the right).

    remove-appxpackage -allusers -package "<PASTE the packagefullname>"

    Then Capture your image again, and see if it's fixed the issue.

    0 comments No comments