If you copied the database from one SQL server to another, I'm not sure how the TMS permissions got messed up, but it can be fixed if you can access the database and run a few queries with SQL Server Management Studio or similar program.
The Query below will allow you to put an individual into the Site Administrator group in TMS:
- EMAIL_ADDRESS is the email address of the user you want to update.
- TMS_ID is the Id assigned by TMS to the user within the AclUser table.
SELECT * FROM AclUser WHERE EmailAddress = 'EMAIL_ADDRESS';
UPDATE AclUserGroup SET AclGroup_Id = '1' WHERE AclUser_Id = 'TMS_ID';
Also, if you changed the name of the server hostname, you will need to update the hostname within TMS. To do this, you use TMS Tools located under Start > Programs > Cisco TelePresence Management Suite. This will update the hostname for any local account within TMS, and doesn't affect domain accounts.