# Is it possible to unload a [[Command]]?
#obsidian/api/faq
---
As of 0.11.2, there's nothing exposed in the API to unload a command. There is a workaround, however.
## Sample Code
```ts
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(this.app as any).commands.removeCommand(commandId`<plugin_id>:my-command`);
```