in

CodePrairie .NET

South Dakota .NET User Group

I Hate Linux

Multiple OEM Home Server Tabs

The Windows Home Server Console reserves the left most tab position to a tab supplied by the OEM who builds the actual Windows Home Server... such as what is seen in the HP MediaSmart server:

mediasmart-server

Did you know that you can specify your own?

It's simply a matter of breaking out the HomeServerConsole.exe.config file on the server and specifying an appSettings key and value based on the name of the tab in question.

For me to set my Web Folders add-in to show up as the OEM tab my config file could be as simple as this:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <appSettings>
        <add key="Web Folders" value="1" />
    </appSettings>
</configuration>

Once done the third party tab you've specified will show up in the OEM position:

Web Folders as OEM Tab

Did you know that you can specify more than 1 OEM tab?

Just use the same trick in the config file... only do it again for other tabs:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <appSettings>
        <add key="Web Folders" value="1" />
        <add key="DHCP Server" value="1" />
    </appSettings>
</configuration>

DHCP and Web Folders as OEM Tabs

Just remember that when two tabs have the same numerical value, their display names are used to sort them alphabetically.

Read the complete post at http://feeds.feedburner.com/~r/IHateLinux/~3/210877396/multiple-oem-home-server-tabs.html

Powered by Community Server (Commercial Edition), by Telligent Systems