Removing DefaultCommandLibrary

by Sep 19, 2022

💡Tip: Is DefaultCommandLibrary blocking your deployments?

Last week we had an issue deploying, because suddenly we had a dependency on a component library called DefaultCommandLibrary. Our quick fix was to add the dependency to the solution.

But then it was complaining about another dependency, called an App Element, which we couldn’t add to the solution using Power App Maker.

These components are created when you open the new Command bar designer. Somebody in our team played with it, but in the end didn’t add a button: these components were still added.

Lucky I found this blog post: Quick Fix – Can’t Delete That Command Bar Component Library? by Tae Rim Han. It explained the reason and how to fix it.

But I used SQL 4 CDS by Mark Carrington, my favorite go-to tool when working on Dataverse to fix the issue. I used the following queries to find the components:

SELECT * FROM appaction 
SELECT * FROM appelement  -- this one you can't delete from Power App Maker :-(

SQL 4 CDS also allows us to write INSERT-, UPDATE- and DELETE-statements so the issue was quickly resolved!

DELETE FROM appelement WHERE appelementid = '<the appelementid you want to delete>'

Did I tell you already that SQL 4 CDS is my favorite go-to tool?!

Remy van Duijkeren

Remy van Duijkeren

Power Platform Advisor

Microsoft Power Platform Advisor with over 25 years of experience in IT with a focus on (marketing) automation and integration.

Helping organizations with scaling their business by automating processes on the Power Platform (Dynamics 365).

Expert in Power Platform, Dynamics 365 (Marketing & Sales) and Azure Integration Services. Giving advice and strategy consultancy.

Services:
– Strategy and tactics advise
– Automating and integrating

Subscribe to
The Daily Friction

A daily newsletter on automation and eliminating friction

Related Content

Microsoft Teams: Too Many Apps in One?

Microsoft Teams: Too Many Apps in One? All-in-one apps like Teams? That’s a hard pass from me. Microsoft Teams wants to be the one app to rule them all. But I’m the guy who likes my apps separate, like LEGO bricks—not superglued together. I open my To-Do app...

read more

I see your comment. And I see AI fingerprints all over it.

I see your comment. And I see AI fingerprints all over it. You know the ones where you think: Bro... did you even read my post? 😅 I get it. We want engagement. We want the algorithm to give us more eyeballs. But fake engagement is still fake. Here’s what happens when...

read more

Abstract the abstraction 🤯.

Abstract the abstraction 🤯. .NET devs, we love our patterns... maybe too much. For a simple CRUD app, I've seen: Repositories – because obviously we can't query directly, that's too mainstream UnitOfWork – like transactions, but now with extra ceremony Services –...

read more