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

ReSharper is 20 years old! πŸŽ‰

ReSharper is 20 years old! πŸŽ‰ Reading https://blog.jetbrains.com/dotnet/2024/07/23/resharper-20-years/ makes me realize how long I have been a .NET developer. I still remember using ReSharper for the first time. πŸ’‘ ReSharper made Visual Studio a much better IDE. πŸš€ It...

read more

Switching from Google to Bing πŸ”

Switching from Google to Bing πŸ” Recently, I've decided to switch from Google Search to Microsoft Bing, and here’s why: Ad Overload on Google: Google's integration of its advertising and search teams has led to a surge in sponsored links. This trend often means...

read more

Improving Optimization?

Improving Optimization? The traditional steps of Optimization: 1. Eliminate 2. Automate or 3. Delegate What if we added a missing element? Simplify. Before automating a convoluted workflow or delegating a tangled task, strip away the unnecessary. Make processes leaner...

read more