Figured out a solution. The problem was that the "Reminder" entries were missing from my Normal profile. I mean if you go into Meeting profile, you will see entries for Ring, Alarm, Reminder, Notification and System sound. But for the Normal, the Reminder was missing.
The solution - add it in.
Steps:
1. Start->Settings->Profiles->Normal->Edit
2. Change any one of the entries, just just it and click Done. This creates a profile XML file in the \Application Data\Profiles. Called "Normal.prof.XML". It is hidden so you will have to enable viewing of hidden files to view it.
3. Copy the file over to your PC.
4. Open the file in Notepad.
5. You will see the following content, or similar depending on your settings.
Code:
<characteristic type="Normal">
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\Profiles\Normal">
<parm name="Name" value="Normal"/>
</characteristic>
</characteristic>
<characteristic type="Sounds">
<parm name="RingTypeAll" value="c50apw3c150r"/>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\SoundCategories">
<characteristic type="Ring">
<parm name="InitVol" value="4"/>
</characteristic>
<characteristic type="Alarm">
<parm name="Script" value="pw10pw10c110pw10c110pw30c110pw30c110pw30c110pw120c110pw300c110p"/>
<parm name="InitVol" value="4"/>
</characteristic>
<characteristic type="Notification">
<parm name="Script" value="p"/>
<parm name="InitVol" value="2"/>
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Sounds">
<characteristic type="System">
<parm name="InitVol" value="0"/>
</characteristic>
</characteristic>
</characteristic>
6. Add this section to the file.
Code:
<characteristic type="Reminder">
<parm name="Script" value="p"/>
<parm name="InitVol" value="3"/>
</characteristic>
So that your file looks like this. The Reminder section was added after the Alarm section. Double check the edit.
Code:
<characteristic type="Normal">
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\Profiles\Normal">
<parm name="Name" value="Normal"/>
</characteristic>
</characteristic>
<characteristic type="Sounds">
<parm name="RingTypeAll" value="c50apw3c150r"/>
</characteristic>
<characteristic type="Registry">
<characteristic type="HKCU\ControlPanel\SoundCategories">
<characteristic type="Ring">
<parm name="InitVol" value="4"/>
</characteristic>
<characteristic type="Alarm">
<parm name="Script" value="pw10pw10c110pw10c110pw30c110pw30c110pw30c110pw120c110pw300c110p"/>
<parm name="InitVol" value="4"/>
</characteristic>
<characteristic type="Reminder">
<parm name="Script" value="p"/>
<parm name="InitVol" value="3"/>
</characteristic>
<characteristic type="Notification">
<parm name="Script" value="p"/>
<parm name="InitVol" value="2"/>
</characteristic>
</characteristic>
</characteristic>
<characteristic type="Sounds">
<characteristic type="System">
<parm name="InitVol" value="0"/>
</characteristic>
</characteristic>
</characteristic>
7. Save the file. Also, save the original file in a different location or name.
8. Copy the file over to the smartphone \Application Data\Profiles
9. Launch the Start->Settings->Profiles->Normal->Edit, you will see the Reminder entries. :-)
Let me know if this works.