Setting Information
- Setting available from Version 3.5
- Database Setting
Detailed Information
This article will describe how to change the “Myself” Name at the “Start a Service” Screen
You can Enter a regular String like “My Self” or My User” or whatever you like, but you can also have something more, dynamically.
You can show an AD User Property of the logged-in User, for example, the “SamAccountName.”
To show a regular String, use the following SQL Query against your au2mator DB
USE [*au2mator Databasename*]
GO
UPDATE [dbo].[Settings] SET Label = 'My User' WHERE Type= '38'
GO
To show a dynamic AD Property of the User, use the following Query for “SamAccountName.”
USE [*au2mator Databasename*]
GO
UPDATE [dbo].[Settings] SET Label = '%SamAccountName%' where Type= '38'
GO
Something More
- Reload the Portal, and Setting should take effect immediately