To work with inventor commands here is two rules to retrieve commands and then execute. It may not be able to retrieve the Woodworking addin commands but try it anyhow. I know it can retrieve the T&P Addin commands. From the API Help here is the ControlDefinition Object
Get Commands List
' Get the CommandManager object.
Dim oCommandMgr As CommandManager = ThisApplication.CommandManager
' Get the collection of control definitions.
Dim oControlDefs As ControlDefinitions = oCommandMgr.ControlDefinitions
oWrite = System.IO.File.CreateText("C:\Temp\CommandNames.txt")'Create and write to a text file
For Each oControlDef In oControlDefs ' iterate through the commands and write to file
oWrite.WriteLine(oControlDef.InternalName & " " & oControlDef.DescriptionText)
Next
oWrite.Close() ' Close the temp file
ThisDoc.Launch("C:\Temp\CommandNames.txt")'open the file
Execute
' Get the control definition for the Place Component command.
Dim ctrlDef As Inventor.ControlDefinition = ThisApplication.CommandManager.ControlDefinitions.Item("TP:Fitting:Delete")
'Enable in the ribbon (if necessary)
'ctrlDef.Enabled = True
' Execute the command.
ctrlDef.Execute
If this solved a problem, please click (accept) as solution.
Or if this helped you, please, click (like)
Regards
Alan