Hi hls,
For configuring a new domain besides the existing domain, you should find this "osdfrontend.exe.config" file and then find the place where is says "AuthenticationDomainName" and under
"<string>you-existing-domain.com<\string>"
put in a new string like this:
<string>your-new-domain.com<\string>
So when you are done editing the file it should look like this:
XML:
<setting name="AuthenticationDomainName" serializeAs="Xml">
<value>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string>your-existing-domain.com</string>
<string>your-new-domain.com</string>
</ArrayOfString>
</value>
</setting>
Then you should be able to select between the 2 domains.
hope this helps you towards adding a new domain to the OSD frontend.
Please let me know if this helped you obtain answer to your question.
Best Regards
Tim