Now that the beta of Internet Explorer 9 is out (you can download it from here), there are new opportunities to make your website act like an application in Windows. One of the easy things that you can do is to create site mode when your users pin your site to the Windows Taskbar. You can do this with a few meta tags and links in your HTML page headers.
On my personal website, Charette.com, I use Graffiti CMS to manage my blog posts and content, so changing the content of the head on every page is simple. I used Visual Studio to create an icon with larger, high-resolution icon images. The source image that I used was a sharpie sketch of my dog Charm that I did years ago. For Graffiti, you should replace your static favicon.ico as well as the favicon.ico file in the \__utility\img folder – see here for the tip. Here is what I added to my site page template in the Graffiti Admin/Site Options/Settings/Header field:
<meta name="application-name" content="The Charette Project" /> <link rel="shortcut icon" type="image/ico" href="http://charette.com/favicon.ico"/> <meta name="msapplication-tooltip" content="Michael Scherotter's Digital Playground" /> <meta name="msapplication-starturl" content="http://charette.com" /> <meta name="msapplication-navbutton-color" content="Orange" /> <meta name="msapplication-task" content="name=Forums;action-uri=http://charette.com/phpbb;icon-uri=http://charette.com/favicon.ico"/> <meta name="msapplication-task" content="name=Journalist;action-uri=http://charette.com/journalist;icon-uri=http://charette.com/favicon.ico"/> <meta name="msapplication-task" content="name=Artwork;action-uri=http://charette.com/artwork;icon-uri=http://charette.com/favicon.ico"/> <meta name="msapplication-task" content="name=Safari;action-uri=http://charette.com/safari;icon-uri=http://charette.com/favicon.ico"/>
To read more about IE9 pinning and what else you can do now with Internet Explorer 9, go to the Internet Explorer Developer Center on MSDN