In case anyone else can benefit, here is a Delete Query (SQL) to remove forms from user's customizations. This version deletes Sales Order Entry. Users have to log out and back in for this to take effect.
DELETE FROM [mfgsys803].[dbo].[favitems]
/*ENTER ITEM NAME YOU WISH TO DELETE FROM ALL FAVORITES*/
WHERE [itemname] = 'OMMT3001'
Keith Walter
DELETE FROM [mfgsys803].[dbo].[favitems]
/*ENTER ITEM NAME YOU WISH TO DELETE FROM ALL FAVORITES*/
WHERE [itemname] = 'OMMT3001'
Keith Walter