<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Michael Creasy's blog : Media Center</title><link>http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx</link><description>Tags: Media Center</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Many questions - MSAS, playing WAV files and what to develop Media Center apps with</title><link>http://blogs.msdn.com/mcreasy/archive/2005/07/13/438607.aspx</link><pubDate>Thu, 14 Jul 2005 02:28:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:438607</guid><dc:creator>mcreasy</dc:creator><slash:comments>8</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/438607.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=438607</wfw:commentRss><description>&lt;P&gt;I've had lots of questions recently and no time to really get answers and post them up here.&amp;nbsp; If I haven't answered you question it's because I don't know the answer and haven't had enough time to get to the bottom of it yet.&lt;/P&gt;
&lt;P&gt;First of all I had a couple of questions on &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediastateaggregationservice.asp?frame=true"&gt;MSAS&lt;/A&gt;&amp;nbsp;which I don't know that much about.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Can I tell which tuner is being used when a recording takes place using MSAS?&lt;/STRONG&gt; No, you can not.&amp;nbsp; What you can do, which may or may not help is use &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/tvrecordstatechangeargsclass.asp?frame=true"&gt;OnTVRecordStateChange&lt;/A&gt;&amp;nbsp;from a background add-in which will give you a GUID and you could track which was in use - this won't help if a tuner is being used for live TV though.&amp;nbsp; Here's a code snippet on how to use OnTVRecordStateChange:&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;void IAddInEntryPoint.Launch(AddInHost host) &lt;BR&gt;{&lt;/P&gt;
&lt;BLOCKQUOTE dir=ltr style="MARGIN-RIGHT: 0px"&gt;
&lt;P&gt;host.Television.OnTVRecordStateChange += new Microsoft.MediaCenter.AddIn.TVRecordStateChangeDelegate(TvRecordStateChangedHandler);&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P dir=ltr&gt;}&lt;/P&gt;
&lt;P dir=ltr&gt;public void TvRecordStateChangedHandler(object obj, Microsoft.MediaCenter.AddIn.TVRecordStateChangeArgs TVArgs) { 
&lt;BLOCKQUOTE&gt;if (TVArgs.Started)
&lt;BLOCKQUOTE&gt;mcHost.HostControl.Dialog("Recording started on tuner " + TVArgs.Tuner, "TV Recording",1,10,false);&lt;/BLOCKQUOTE&gt;else if (TVArgs.Stopped) 
&lt;BLOCKQUOTE&gt;mcHost.HostControl.Dialog("Recording stopped on tuner " + TVArgs.Tuner, "TV Recording",1,10,false);&lt;/BLOCKQUOTE&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P dir=ltr&gt;&lt;STRONG&gt;Can I use remote desktop to connect to a Media Center PC?&lt;/STRONG&gt; Yes.&amp;nbsp; You can even use Media Center, but it won't play video over a RDP connection&lt;/P&gt;
&lt;P dir=ltr&gt;&lt;STRONG&gt;Can I use animated backgrounds in an HTML page?&lt;/STRONG&gt;&amp;nbsp;Not really a media center question, but I don't see why not, use an animated gif.&lt;/P&gt;
&lt;P dir=ltr&gt;&lt;STRONG&gt;Could I create an add-in that played a selection of WAV files with a gap between them?&lt;/STRONG&gt; Yes, using &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/hostcontrolplaymediamethod.asp?frame=true"&gt;Playmedia&lt;/A&gt; and &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediatransportplayrateproperty.asp?frame=true"&gt;Playrate&lt;/A&gt; you could contstruct an addin to do this - waiting until the playrate was stopped, then wating however long you want before playing the next file.&amp;nbsp; You could also use &lt;A href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/MedctrSDK/htm/usingthemorewiththisfeature.asp"&gt;More With This&lt;/A&gt; &amp;nbsp;to make this work with any folder of audio files.&lt;/P&gt;
&lt;P dir=ltr&gt;&lt;STRONG&gt;Can I use ASP.NET for development?&lt;/STRONG&gt;&amp;nbsp; Yes.&amp;nbsp; You can use any web technology that outputs HTML.&lt;/P&gt;
&lt;P dir=ltr&gt;&lt;STRONG&gt;Can I use WinForms for development?&lt;/STRONG&gt;&amp;nbsp; Yes, but if you're running as a .exe you won't have access to Media Center APIs.&amp;nbsp; If you're running as a .NET applet in a webpage you'll have access to the Media Center APIs from the HTML page and will have to communicate between the page and the .NET applet to use the Media Center APIs - non-trivial to do, but not hard.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=438607" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>This week's questions (actually last week's): More on HTML and add-ins</title><link>http://blogs.msdn.com/mcreasy/archive/2005/06/24/432432.aspx</link><pubDate>Sat, 25 Jun 2005 02:18:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:432432</guid><dc:creator>mcreasy</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/432432.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=432432</wfw:commentRss><description>&lt;P&gt;&lt;STRONG&gt;How are HTML apps and add-ins associated with each other? (Can HTML apps trigger add-ins to be launched?)&lt;/STRONG&gt; HTML and add-ins can both be part of the same application, that is each is a different entrypoint of the application. The association takes place at registration time, when both would be registered as one application. An HTML page can start an add-in (on-demand only, not background) by using the &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacenternavigatetopage.asp?frame=true"&gt;NavigateToPage&lt;/A&gt; function with the guid for ExtensibilityEntryPoint as the first parameter. &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Is there a way for HTML apps and add-ins to exchange information (parameters) and trigger events? (Is it possible for an add-in to be registered as a listener to an event that is fired within an HTML application?)&lt;/STRONG&gt; No, there’s no built in way for add-ins and HTML pages to communicate.&amp;lt; Communication between a background add-in and an HTML page could be achieved with an ActiveX/.NET control on the HTML page and then .NET Remoting between the two components. &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How do I register a .exe file so it runs from More Programs?&lt;/STRONG&gt; The same way you &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/registeringanaddinwithmediacenter.asp?frame=true"&gt;register an add-in&lt;/A&gt;, except instead of using the “addin” property on the entrypoint tag, use “run” with the path to the .exe &lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=432432" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Media Center PC's are getting cheap!</title><link>http://blogs.msdn.com/mcreasy/archive/2005/06/23/432081.aspx</link><pubDate>Fri, 24 Jun 2005 05:45:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:432081</guid><dc:creator>mcreasy</dc:creator><slash:comments>7</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/432081.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=432081</wfw:commentRss><description>&lt;P&gt;&lt;A href="http://www.betanews.com/article/Gateway_Debuts_599_Media_Center_PC/1119536435"&gt;Betanews&lt;/A&gt; reports that Gateway/&lt;A href="http://www.emachines.com"&gt;eMachines&lt;/A&gt; will be offering a new Media Center PC for $599!&amp;nbsp; The specs are pretty impressive for such a cheap computer:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;AMD Athlon 64 3400+ 
&lt;LI&gt;1GB DDR SDRAM 
&lt;LI&gt;200GB hard drive 
&lt;LI&gt;ATI Radeon Xpress 200 
&lt;LI&gt;8 in 1 media reader 
&lt;LI&gt;Rewritable dual-layer DVD drive 
&lt;LI&gt;CD-ROM drive&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;Wow.&amp;nbsp; No mention of a TV Tuner, monitor or&amp;nbsp;remote though...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've never bought an eMachines&amp;nbsp;computer before, but that seems like a great deal for a pretty powerful system.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=432081" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>This weeks questions - always on top and registering add-ins and HTML together</title><link>http://blogs.msdn.com/mcreasy/archive/2005/06/10/428142.aspx</link><pubDate>Sat, 11 Jun 2005 02:22:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:428142</guid><dc:creator>mcreasy</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/428142.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=428142</wfw:commentRss><description>&lt;P&gt;I've decided to take all the questions I get by email and answer them on Fridays in one post, so do please continue to email me any questions you have.&amp;nbsp; That said, here's this weeks questions:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can I keep the Media Center window on top so I can work on other things?&lt;/STRONG&gt;&amp;nbsp; In Media Center go to Settings\General\Startup and Window Behavior and select "Media Center window&amp;nbsp;always on top".&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can I associate an HTML application with an add-in?&lt;/STRONG&gt;&amp;nbsp; &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/registeringanaddinwithmediacenter.asp?frame=true"&gt;Register&lt;/A&gt; both the add-in and the HTML page together.&amp;nbsp; Instead of registering the HTML app and the add-in you need to register them both as a single application with multiple entrypoints - one entrypoint for the add-in and one for the HTML page.&amp;nbsp; This will make them both part of the same application and so from a background&amp;nbsp;add-in a call to &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/applicationinfoisforegroundapplicationproperty.asp?frame=true"&gt;ApplicationInfo.IsForeground&lt;/A&gt; will return "true" when the HTML page is currently being displayed.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=428142" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>How to disable a Media Center add-in</title><link>http://blogs.msdn.com/mcreasy/archive/2005/06/09/427473.aspx</link><pubDate>Fri, 10 Jun 2005 03:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:427473</guid><dc:creator>mcreasy</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/427473.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=427473</wfw:commentRss><description>&lt;P&gt;Jason over at &lt;A href="http://www.digitalmediathoughts.com"&gt;Digital Media Thoughts&lt;/A&gt;&amp;nbsp;sent me an email about his new article on &lt;A href="http://www.digitalmediathoughts.com/articles.php?action=expand,8145"&gt;The Powers and Perils of a Platform&lt;/A&gt;.&amp;nbsp; Jason talks about the trouble he had when a Media Center "plugin" went bad and couldn't be uninstalled.&amp;nbsp; It's not clear if it was an HTML application or a managed code add-in, but based on the description I'm assuming it's the latter.&amp;nbsp; He ran into problems when trying to manually uninstall the application so I thought I should post something on what to do when an add-in goes bad...&lt;/P&gt;
&lt;P&gt;In Media Center 2005 add-ins can do pretty much what they want to do without restriction, if one starts to misbehave the best thing you can do is to disable it:&lt;/P&gt;
&lt;OL&gt;
&lt;OL&gt;
&lt;LI&gt;Start Media Center&lt;/LI&gt;
&lt;LI&gt;Click on Settings&lt;/LI&gt;
&lt;LI&gt;Click on General&lt;/LI&gt;
&lt;LI&gt;Click More Programs Options&lt;/LI&gt;
&lt;LI&gt;Click Edit More Programs&lt;/LI&gt;
&lt;LI&gt;Deslect the app to disable and click Save&lt;/LI&gt;&lt;/OL&gt;&lt;/OL&gt;
&lt;P dir=ltr&gt;This will disable the app from starting and hide anything entrypoint it's registered throughout Media Center.&amp;nbsp; It won't uninstall the app, but it will prevent it from running.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=427473" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Questions answered</title><link>http://blogs.msdn.com/mcreasy/archive/2005/06/03/425041.aspx</link><pubDate>Sat, 04 Jun 2005 02:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:425041</guid><dc:creator>mcreasy</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/425041.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=425041</wfw:commentRss><description>&lt;P&gt;I've had a couple of questions by email that I should answer (note I've paraphrased some of these):&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;What fonts should I use for my HTML Media Center application and can I use Flash?&lt;/STRONG&gt;&amp;nbsp; The SDK is where to go for &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/userinterfaceguidelinesforhtmlapplications.asp?frame=true"&gt;design guidelines&lt;/A&gt; for HTML applications (the short answer is to use a sans serif font).&amp;nbsp; Yes, Flash can be used in HTML Media Center applications - Napster and MSN Music both use Flash.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can I add an application to the Start Menu?&lt;/STRONG&gt;&amp;nbsp; You can't.&amp;nbsp; Well OK, you can, but we recommend that only OEMs use this functionality as there is a limit to how many applications can appear on the start menu and adding a new app will stomp on existing applications.&amp;nbsp; If you intend to distribute your application you shouldn't do this, but if you really want to know, the details are in the SDK &lt;A href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacentercustomizationoptionsforoems.asp?frame=true"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I've seen the Media Center software for sale online is it OK to buy it?&lt;/STRONG&gt;&amp;nbsp; I'm no lawyer so I'm not going to comment on this.&amp;nbsp; Media Center is an OEM product and only available with new PCs is the official answer though.&lt;/P&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=425041" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Media Center keyboard shortcuts</title><link>http://blogs.msdn.com/mcreasy/archive/2005/03/30/403908.aspx</link><pubDate>Wed, 30 Mar 2005 22:29:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:403908</guid><dc:creator>mcreasy</dc:creator><slash:comments>7</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/403908.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=403908</wfw:commentRss><description>&lt;p&gt;All the keyboard shortcuts for Media Center for those times when you just don't want to use a remote control are documented &lt;a href="http://www.microsoft.com/enable/products/keyboard/keyboardresults.asp?Product=42"&gt;here&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Update: If the page doesn't display, try again later, it's propagating around servers or something like that I'm told&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=403908" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>MSN Remote Record</title><link>http://blogs.msdn.com/mcreasy/archive/2005/02/24/379720.aspx</link><pubDate>Thu, 24 Feb 2005 17:34:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:379720</guid><dc:creator>mcreasy</dc:creator><slash:comments>9</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/379720.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=379720</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://tv.msn.com/tv/guide/"&gt;MSN Remote Record&lt;/a&gt; is live and out of beta.&amp;nbsp; In simplest terms it's a way of browsing the same TV guide as your Media Center PC uses and then remotely instructing your Media Center PC to record something.&amp;nbsp; Pretty clever stuff.&amp;nbsp; There's a small download for your Media Center PC and then it looks pretty easy to use.&lt;/p&gt; &lt;p&gt;Try it and let me know what you think.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=379720" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Emailing me with tech support requests</title><link>http://blogs.msdn.com/mcreasy/archive/2005/02/23/379017.aspx</link><pubDate>Wed, 23 Feb 2005 18:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:379017</guid><dc:creator>mcreasy</dc:creator><slash:comments>5</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/379017.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=379017</wfw:commentRss><description>&lt;p&gt;I get a lot of emails asking for help with people's Media Center and I can't answer them all.&amp;nbsp; Feel free to email me with things you'd like me to write about, but please understand I can't answer all the emails or provide tech support for you.&amp;nbsp; If you have a problem I encourage you to use the &lt;a href="http://www.microsoft.com/windowsxp/expertzone/newsgroups/reader.mspx?dg=microsoft.public.windows.mediacenter"&gt;newsgroups&lt;/a&gt; where you'll likely get your question answered, possibly even by me.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=379017" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Intel Barebones Media Center PC</title><link>http://blogs.msdn.com/mcreasy/archive/2005/02/18/376165.aspx</link><pubDate>Fri, 18 Feb 2005 17:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:376165</guid><dc:creator>mcreasy</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/376165.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=376165</wfw:commentRss><description>&lt;p&gt;&lt;img style="FLOAT: left" src="http://images10.newegg.com/ProductImageCompressAll125/56-122-001-01.jpg" /&gt; This is pretty cool if you're looking to build your own Media Center PC.&amp;nbsp; Intel have started producing barebones systems in a case that wouldn't look out of place with other A/V equipment.&amp;nbsp; All you need to add is a CPU (an Intel P4 of course), hard drive and RAM.&lt;/p&gt; &lt;p&gt;The motherboard is based on the Intel 915P chipset with integrated 8-channel Intel HD audio with coax and optical out.&amp;nbsp; There's a dual NTSC tuner in the system as well, although it's not clear which brand it is.&amp;nbsp; Also pre-installed is a PCI-E x16 ATI X300LE graphics card - I'd have preferred something more powerfully, but it will be fine for SD content.&amp;nbsp; There's a combo DVD/CD-RW drive, a dual layer DVD+/-RW would have been a nice upgrade.&amp;nbsp; There's a built in Ethernet port as well as wireless (no 'a' just 'b' and 'g'), a flash card reader, front panel display and a it comes with a remote control for Media Center.&lt;/p&gt; &lt;p&gt;It looks like you could build a reasonable Media Center with it, but there's room for improvement.&amp;nbsp; It also seems a little on the expensive side to me.&lt;/p&gt; &lt;p&gt;Take a look at it at &lt;a href="http://www.newegg.com/app/ViewProductDesc.asp?description=56-122-001&amp;amp;depa=1"&gt;NewEgg.com&lt;/a&gt; via &lt;a href="http://www.ehomeupgrade.com/entry/624/byo_alienware_dh2"&gt;eHomeUpgrade.com&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=376165" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Update for Media Center Extender for Xbox now available</title><link>http://blogs.msdn.com/mcreasy/archive/2005/02/17/375843.aspx</link><pubDate>Fri, 18 Feb 2005 04:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:375843</guid><dc:creator>mcreasy</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/375843.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=375843</wfw:commentRss><description>&lt;p&gt;There's an update for MCX for Xbox available on Xbox Live now that will allow you&amp;nbsp;to play back CGMS-A content (HBO etc...).&amp;nbsp; You should get prompted about the update next time you&amp;nbsp; log into Live.&lt;/p&gt; &lt;p&gt;If you don't have Xbox Live you can request the update &lt;a href="http://go.microsoft.com/fwlink/?LinkId=39479"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=375843" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Installing applications on Media Center</title><link>http://blogs.msdn.com/mcreasy/archive/2005/02/17/375600.aspx</link><pubDate>Thu, 17 Feb 2005 21:38:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:375600</guid><dc:creator>mcreasy</dc:creator><slash:comments>13</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/375600.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=375600</wfw:commentRss><description>&lt;p&gt;In response to an emailed question from Mike Kaltschnee about how to install applications on Media Center I thought I'd provide my thoughts on the subject.&amp;nbsp;&lt;/p&gt; &lt;p&gt;First, do you really need to install something?&amp;nbsp; Let's tackle what do if you just want to create some links to your web based application.&lt;/p&gt; &lt;h3&gt;Creating links to applications&lt;/h3&gt; &lt;p&gt;There are a few ways of getting a link onto a PC...&lt;/p&gt; &lt;p&gt;Provide a MCL file that the end user can download and put on their PC.&amp;nbsp; This is great for sharing links to sites for&amp;nbsp;&lt;span lang="EN" style="FONT-SIZE: 12pt; FONT-FAMILY: 'Times New Roman'; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: EN-GB; mso-fareast-language: EN-US; mso-bidi-language: AR-SA"&gt;technical&amp;nbsp;&lt;/span&gt; users, but doesn't work that well for non-technical users.&amp;nbsp; If you choose this option you need to get the user to save the MCL file to their PC and then double click on it.&amp;nbsp; This will start Media Center and navigate to your application.&amp;nbsp; Your application should then make use of one of the following APIs to get a link installed.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;But the user has the MCL file, why do I need to create another one?&lt;/strong&gt;&amp;nbsp; To get your application to show up in More Programs inside Media Center that MCL file needs to be in a specific location and many users will not understand how to save the file in the right place.&amp;nbsp; Also your initial MCL may point to a sign-up page and your link could point to the main page of your application.&lt;/p&gt; &lt;h4&gt;Creating a link using &lt;a href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacentercreatemcl.asp?frame=true"&gt;CreateMCL&lt;/a&gt;&lt;/h4&gt; &lt;p&gt;NOTE: This API should only be used for Media Center 2004 clients.&amp;nbsp; If the target is Media Center 2005 use the RegisterApplication API (see below).&lt;/p&gt; &lt;p&gt;The &lt;a href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacentercreatemcl.asp?frame=true"&gt;SDK&lt;/a&gt; describes how to use the API, but I have a few extra notes...&lt;/p&gt; &lt;ul&gt; &lt;li&gt;"StartImageUrl" will be ignored on Media Center 2005 &lt;li&gt;Ignore the "Category" param or specify 0.&amp;nbsp; &lt;li&gt;"Type" should always be 0&lt;/li&gt;&lt;/ul&gt; &lt;h4&gt;Creating a link using &lt;a href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacenterregisterapplication.asp?frame=true"&gt;RegisterApplication&lt;/a&gt;&lt;/h4&gt; &lt;p&gt;I've talked a little bit about this API &lt;A href="http://blogs.msdn.com/mcreasy/archive/2004/10/12/241449.aspx"&gt;before&lt;/a&gt;, but I'll say a bit more here.&lt;/p&gt; &lt;p&gt;This is the preferred way of creating links (or "entrypoints" as we like to call them) in Media Center 2005 and it has a number of advantages:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;You can register your application to &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/MedctrSDK/htm/categoryelement.asp"&gt;multiple places&lt;/a&gt; instead of just More Programs. &lt;ul&gt; &lt;li&gt;"More With This" categories will let your application appear in when a user brings up the context menu on a piece of media and clicks the "More..." button.&amp;nbsp; You'll also get information on the media they clicked on, so if you're building a photo sharing application you'd want to register in the "More With This\Picture" category. &lt;li&gt;"Services" categories allow your application to appear on the "More" pages that appear in each experience, i.e. "More Music" &lt;li&gt;"New For Me" is a big topic and I'll cover this at a later date.&lt;/li&gt;&lt;/ul&gt; &lt;li&gt;Using different categories you can create more than one link at a time. &lt;li&gt;This is the way to register &lt;A href="http://blogs.msdn.com/mcreasy/archive/2004/10/12/241449.aspx"&gt;add-ins&lt;/a&gt;. &lt;li&gt;You can register your application for all users of the PC&lt;/li&gt;&lt;/ul&gt; &lt;h3&gt;Installing your application&lt;/h3&gt; &lt;p&gt;Creating a link is fine if your application is purely web based, but if you need to download something (an add-in for example) then you need to get the content on to the PC somehow.&lt;/p&gt; &lt;p&gt;If all you need to install are some ActiveX controls you can do that in Media Center, just as you would in IE.&lt;/p&gt; &lt;p&gt;If you need to install an add-in then there are a couple of things you need to do...&lt;/p&gt; &lt;h4&gt;Creating an add-in installer&lt;/h4&gt; &lt;p&gt;The SDK includes the basics on &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/MedctrSDK/htm/creatingawindowsinstallerfileforanaddin.asp"&gt;how to create an installer&lt;/a&gt; and simplifies how to register your application.&amp;nbsp; This is the preferred way of installing an add-in.&lt;/p&gt; &lt;h4&gt;Downloading the add-in&lt;/h4&gt; &lt;p&gt;Media Center does not provide a special way of downloading files from the web and we recommend that you avoid trying to get users to download files via the 10' interface of Media Center as on a TV the download dialogs may be difficult read and understand.&amp;nbsp; Instead you should get the user to download your installed from a standard website in Internet Explorer.&lt;/p&gt; &lt;p&gt;Assuming that the user is viewing your 10' website in Media Center and wants to download your add-in:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Warn the user that to install the add-in they will need to visit a website in Internet Explorer &lt;li&gt;Direct the user to the web page &lt;ol&gt; &lt;li&gt;In Media Center 2005 use the &lt;a href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacentercreatedesktopshortcut.asp?frame=true"&gt;CreateDesktopShortcut&lt;/a&gt; API to either create a shortcut on the desktop to your website or open it directly in IE (note if Media Center is full screen IE will open behind Media Center, so you'll need to &lt;a href="http://msdn.microsoft.com/library/en-us/MedctrSDK/htm/mediacenterdirectxexclusive.asp?frame=true"&gt;exit DirectX exclusive mode&lt;/a&gt; first) &lt;li&gt;In Media Center 2004 directly navigate to the page and Media Center will give the user the option of viewing the page in Media Center or creating a shortcut to open in IE later.&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Naturally the same steps could be used for installing something other than an add-in.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=375600" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Sony will offer an upgrade to Media Center 2005</title><link>http://blogs.msdn.com/mcreasy/archive/2005/01/31/363893.aspx</link><pubDate>Mon, 31 Jan 2005 17:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:363893</guid><dc:creator>mcreasy</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/363893.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=363893</wfw:commentRss><description>If you've got a Sony Media Center PC and want an upgrade to Media Center 2005, you'll want to click &lt;a href="http://esupport.sony.com/perl/news-item.pl?template=EN&amp;amp;mdl_id=1130&amp;amp;news_id=65"&gt;here&lt;/a&gt;.&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=363893" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item><item><title>Improving "My Pictures"</title><link>http://blogs.msdn.com/mcreasy/archive/2004/12/31/344869.aspx</link><pubDate>Fri, 31 Dec 2004 17:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:344869</guid><dc:creator>mcreasy</dc:creator><slash:comments>6</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/344869.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=344869</wfw:commentRss><description>&lt;p&gt;eHomeUpgrade talks about &lt;a href="http://www.ehomeupgrade.com/entry/466/improving_mce-s_my"&gt;how to improve the My Pictures experience in Media Center&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;There's some good ideas there.&amp;nbsp; Some that I've thought of before and would like to see and some that I haven't.&amp;nbsp; They noticed that a slideshow always starts with the same photo which annoys me as well, but I've learnt to live with it.&amp;nbsp; They mention meta-data on photos, which is a good idea, but I already keep my &lt;a href="http://www.michaelcreasy.com/photos"&gt;photos&lt;/a&gt; organised by folder which does most of what they suggest.&lt;/p&gt; &lt;p&gt;There's a suggestion of a My Art feature - I think this is what &lt;a href="http://www.galleryplayer.com/"&gt;Gallery Player&lt;/a&gt; is targeted at.&amp;nbsp; It's now in Online Spotlight.&lt;/p&gt; &lt;p&gt;I've been thinking of doing some work on my &lt;a href="http://www.michaelcreasy.com/photos"&gt;personal website &lt;/a&gt;to make it display photos differently when viewed from Media Center.&amp;nbsp; Maybe I'll work on that this weekend.&amp;nbsp; The pages are written in ASP.NET so I can easily customise it to do something different for Media Center.&lt;/p&gt; &lt;p&gt;Who has some great ideas about how My Pictures could be improved?&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=344869" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Photography/default.aspx">Photography</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Digital+Media/default.aspx">Digital Media</category></item><item><title>Got an Extender?  Got HBO?  You'll want this update.</title><link>http://blogs.msdn.com/mcreasy/archive/2004/12/20/327788.aspx</link><pubDate>Tue, 21 Dec 2004 02:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:327788</guid><dc:creator>mcreasy</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/mcreasy/comments/327788.aspx</comments><wfw:commentRss>http://blogs.msdn.com/mcreasy/commentrss.aspx?PostID=327788</wfw:commentRss><description>&lt;p&gt;Now you can watch copy protected TV on your Extender.&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=930D322B-F76D-4FD9-9492-0EF50285FF8A&amp;amp;displaylang=en"&gt;Update for the HP model.&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=85BB96A5-3B50-4071-9A2A-8774B3104F6A&amp;amp;displaylang=en"&gt;Update for the Linksys model.&lt;/a&gt;&lt;/p&gt; &lt;p&gt;Just in time for the holidays.&amp;nbsp; Enjoy everyone.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=327788" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Media+Center/default.aspx">Media Center</category><category domain="http://blogs.msdn.com/mcreasy/archive/tags/Michael+Creasy_2700_s+Blog/default.aspx">Michael Creasy's Blog</category></item></channel></rss>