Hello everyone,
For those of you running MCE2005 like me, cause I didnt like Vista's wierdness I have modified the file browser to automatically mount iso images. Hope you dont mind Treason.
Process is as follows:
-Install the file browser as normal
-Edit the browser.html file normally located in C:\Program Files\MCE File Browser
-Somewhere in the doSelect function add
if (tester == "iso")
{tester = oCurFocus.id;
tester = tester.substring(3, tester.length);
tester = unescape(tester);
checkParentalControls(4); strUrl = tester;
}
-At the bottom of the LoadFiles function add this (Note: you could change img src=):
if (ext == "iso") {document.write("<tr><td><span id='iso" + MyPath + escape(file.name) + "' class='drv' MCFocusable='true'><img src='Images/music.gif' width='34' height='34'> " + txt + "</span></td></tr>");
}
Last but not least add this to the playMedia function:[indent]
if ((ext == "mp3") || (ext == "wav"))
{ window.external.MediaCenter.PlayMedia(1,strUrl)
}
else
{ if(ext == "iso")
{WshShell = new ActiveXObject("WScript.Shell");
OpenImage = '"c:\\program files\\alcohol soft\\alcohol 120\\axcmd"'+ "n: /m:" + strUrl
WshShell.Run(OpenImage);
}
else
{window.external.MediaCenter.PlayMedia(2,strUrl)
}
}
Now all this hinges on the fact that you are running Alcohol virtual DVD drive but this could easily work for any mounting program, simply change the 'OpenImage' link to point to whichever is your favorite program.
Good luck...

(Note: The playlist does not work yet, you'll have to modify code to get that to work, havent gotten to that yet. Just happy to be able to mount DVD images without having to resort to keyboard and mouse.)