Not much to say here really, this is a quick little project I did as a reply to a request over at TGB.
myMounter let's you mount any ISO image (using Daemon Tools) from within Vista Media Center. If the ISO in question is a DVD, it'll automatically start playing.
So, to install. Grab the file above, run the installer, start Media Center and you will find a myMounter entry in Program Library. Click this, it'll bring up a screen saying Configuration not complete, please check bla bla, once you've seen this, close Media Center, and go edit the C:\ProgramData\senseIT\myMounter\Settings.xml appropriately.
I.e. make sure the path to daemon.exe is correct - I used the default value, so unless you've changed it during install you should be fine. Check that your ISO file is one of the formats provided under <FileTypes>, if it isn't, simply add the extention to the list using <string>ext</string>. Finally, add the folders you'd like to list files from under <ISOFolders>. You do this in the same format as for extentions, ie. <string>\\MYSERVER\Videos\DVD\ISO</string>. You can add as many folders as you'd like.
If you have any suggestions for this add-in, let me know and I'll see if I can implement them.
Here is a sample Settings.xml file which should hopefully clear any remaining questions up.
<?xml version="1.0" encoding="utf-8"?>
<myMounterSettings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DaemonPath>C:\Program Files\DAEMON Tools\daemon.exe</DaemonPath>
<FileTypes>
<string>iso</string>
<string>cdi</string>
<string>pdi</string>
<string>nrg</string>
<string>mds</string>
<string>isz</string>
<string>bin</string>
<string>cue</string>
<string>ccd</string>
<string>bwt</string>
<string>b5t</string>
<string>b6t</string>
<string>img</string>
</FileTypes>
<ISOFolders>
<string>\\STORE\Video\DVD</string>
<string>\\WHS\Videos\DVD</string>
</ISOFolders>
</myMounterSettings>