Deleted machine still shows under Orchestrator - License tab

Cannot remove machine from License tab

Issue description:

Deleted a machine from Orchestrator-Machines but this still shows up under the License tab and there are no options to remove it from there as well.


Resolution:

Delete machine from database.

Please create a backup of the dbo.robotlicenses table before running the following query in the database:

DELETE

FROM [dbo].[RobotLicenses]

WHERE [LicenseKey] IN (

SELECT [LicenseKey]

FROM [dbo].[Machines]

WHERE name = 'Machine'

AND IsDeleted = 1

)


Replace 'Machine' with the actual machine name (Machine_Name_Example).

Log out and back into Orchestrator and check if the machine was removed from the License tab.