AFAIK, there is no way in general.
If you need your site/application to appear in IE alone, then there is a way. You can create a .hta file (html application file).
To create a .hts file please cut and paste the following script into a text file and save it in the name say, site.hta
<script language="JavaScript">
window.open("http://yoursite.com/defaultpage.asp","Your_site", "height="+(screen.height-10)+", width="+(screen.width-10)+", left=0, top=0, status=no, scrollbars=no");
self.close();
</script>
Just double click the file site.hta. It will start working.
In the above script, you can change
http://yoursite.com/defaultpage.asp appropriately. This page will get opened in a window without menubar, toolbar, addressbar and statusbar.
You may adjust height and width also in the above script.
Best wishes,
Madhu