To create custom Plesk title bar text, follow these steps:
insert into misc(param, val) values('custom_title', 'My Custom Title')
Where 'My Custom Title' is the Plesk custom title bar text you want to set.
To change custom Plesk title bar text, follow these steps:
update misc set val = 'New My Custom Title' where param='custom_title'
Where 'My Custom Title' is the Plesk custom title bar text you want to set.
To delete custom Plesk title bar text, follow these steps:
delete from misc where param='custom_title'
Note: You can use the dbclient.exe utility to add the information to the Plesk database. For information about using the dbclient.exe utility, consult Plesk for Windows Command Line Interface Reference.