IE7 Standalone Launch Script

As of IE7 Beta 3, this launch script no longer works. I've released a new version which works with newer IE7 versions (including RC1). Read about it here, then download it here


UPDATES
8/31/2006 - Version 1.6 works with IE7 RC1. Grab it here.
7/26/2006 - Version 1.5 works with IE7 Beta 3, but requires a few more files so I've bundled it into a zip file for distribution. Grab it here.
6/29/2006 - This isn't working with IE7 Beta 3 yet. I'll have to test it out more and probably release a new version.
2/8/2006 - Version 1.4 temporarily updates the IE version to work with conditional statements (<!--[if lt IE 7.0]>) based on a recommendation by Thomas Meinike. 3/21/2006 - This build has been tested with the IE7 B2 Preview released on 3/20/2006. It works, in that it allowed me to browse sites in IE7 without messing up IE6 or my default browser association. However, I noticed high CPU usage while browsing and had to close IE7 using the task manager when I was through - it didn't respond to that little red X thing. I believe these are minor inconveniences compared to running a separate virtual machine just to check how a site looks. Obviously, this build of IE7 just came out yesterday so I haven't put this through rigorous testing.
2/2/2006 - Version 1.3 works with IE7 Beta 2 Preview.

The IE6 Cumulative Security Update (Dec 13) broke the IE Standalone Mode that's been around since IE3 and is a big help in designing for forward compatibility. The IE team's response is that the standalone mode is not supported, so do a full install of the IE7 beta if you want to use it. After a short bit of grumbling, I'll tell you how you can still run IE7 in standalone mode despite the security update.

I hope the "by design" solution is a temporary workaround that will be fixed soon, for a lot of reasons:

  • It's going to be really annoying for web developers to have to test on IE6 and IE7 if they can't both run on the same machine
  • It's not the developers' fault
  • Other browsers allow running multiple versions on the same machine
  • IE is making a lot of breaking changes between versions 6 and 7
  • IE's "standard defiance" virtually required (or highly encouraged) non-standard HTML / CSS / Javascript
  • The standalone mode, unsupported or not, has worked for like 10 years now

The symptoms of this recent problem are interesting - in my case, every time I clicked a link in IE it would open in Firefox (my default browser). There are lots of other strange effects other people are seeing, such as blank windows, hanging, and a ringing in the ears. The problem is that IE7 writes a registry key that causes IE6 to shift to an also undocumented "evil" mode, and it's necessary to delete this registry key after running IE7 and before running IE6 with the December 05 cumulative security update.

Okay, on to the solutions...

If you just want to delete the registry key and follow the rules (don't use IE7 at all, take the plunge and use IE7, or use a virtual machine with VirtualPC or VMWare), then you can just copy the following text into notepad, save it as ie7fix.reg, and double-click it. Note: this is not the launch script, it's just a cleanup in case you've used the launch script before and it's causing problems.

Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\CLSID\{C90250F3-4D7D-4991-9B69-A5C5BC1C2AE6}]

 

But if you'd like to keep running IE7 in standalone mode, you can use the following DOS batch script. You'll use the batch file to launch IE7, and it will stay active as long as IE7 is running. As soon as you shut IE7 down (that red X button or File / Exit), the batch file will clean up after IE7 so your other browsers will continue to work.

How to use the IE7 Launch Script:

  1. If you already have IE7 set up for standalone mode, skip to step 4.
  2. Download the IE7 Beta Install from MSDN. I know there are versions of this floating around the intarwebs, which may or may not carry the ebola virus.
  3. Open the install file with a decompression program like WinRAR (yep, it's an EXE, but it's a self extracting EXE) and extract them to a folder. Alternatively, you can just run the EXE, make a copy of the files which are extracted in the first step, and cancel the install. I was too chicken to do this on my work computer. There were some other steps to the setup which I've included in the batch file below - if you want to know what they are, read the original info here.
  4. Copy the text below to notepad and save it as IE7.bat in the same folder you're setting up the standalone IE7 copy.
  5. When you want to run IE7, double click IE7.bat - it pops up a DOS window that will hang around as long as IE7 is running so it can clean up after it (by deleting that pesky registry key) when you close IE7. Don't close the DOS window down or your pancreas will implode.
  6. When you're done with IE7, just shut it down. The DOS window will clean up that pesky registry key and delete the standalone files, then disappear. If you shut IE7 down and the DOS window hangs around, just close it and run it again.
Update - If setting up the launch script is more work than you'd like, and you don't mind downloading from a non-Microsoft source, you can easily find zipped IE7 redistributions with the launch script already set up.

@ECHO OFF
TITLE IE7 Launcher 1.4

ECHO 
IE7 STANDALONE LAUNCHER 1.4
ECHO 
Updated for IE7 Beta Preview
ECHO.
ECHO Do not close this window or it will not clean up after itself properly.
ECHO You can pass a URL into this batch filelike this:
ECHO ie7.bat www.microsoft.com
ECHO.
ECHO More info here: http://weblogs.asp.net/jgalloway/archive/2005/12/28/434132.aspx
ECHO.
ECHO When you close IE7this will remove the registry key and shut itself down.
ECHO.
ECHO Setting up IE7 for standalone mode...
PUSHD %~dp0

ECHO Removing IE7 registry key and set the version vector to "7.0000".
%TEMP%.\IE7Fix.reg ECHO REGEDIT4
>>%TEMP%.\IE7Fix.reg ECHO.
>>
%TEMP%.\IE7Fix.reg ECHO [-HKEY_CLASSES_ROOT\CLSID\{C90250F3-4D7D-4991-9B69-A5C5BC1C2AE6}]
>>
%TEMP%.\IE7Fix.reg ECHO [-HKEY_CLASSES_ROOT\Interface\{000214E5-0000-0000-C000-000000000046}]
>>
%TEMP%.\IE7Fix.reg ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Version Vector]
>>
%TEMP%.\IE7Fix.reg ECHO "IE"="7.0000"
>>%TEMP%.\IE7Fix.reg ECHO.
:: Merge the REG file to delete the IE7 standalone entry
REGEDIT /%TEMP%.\IE7Fix.reg

REN SHLWAPI.DLL SHLWAPI.DLL.BAK
TYPE NUL IEXPLORE.exe.local
ECHO Running IE7...
iexplore.exe "%1"

:: Merge the REG file to delete the IE7 standalone entry
REGEDIT /%TEMP%.\IE7Fix.reg
:: Delete the temporary REG file
DEL %TEMP%.\IE7Fix.reg

ECHO Removing IE7 standalone files...
REN SHLWAPI.DLL.BAK SHLWAPI.DLL
DEL IEXPLORE.exe.local

:: Set the old version vector "6.0000".
%TEMP%.\IE7Fix.reg ECHO REGEDIT4
>>%TEMP%.\IE7Fix.reg ECHO.
>>
%TEMP%.\IE7Fix.reg ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Version Vector]
>>
%TEMP%.\IE7Fix.reg ECHO "IE"="6.0000"
>>%TEMP%.\IE7Fix.reg ECHO.
REGEDIT /
%TEMP%.\IE7Fix.reg
DEL %TEMP%.\IE7Fix.reg

POPD
ECHO 
Completeclosing...

 

Please leave any comments here.

Published Wednesday, December 28, 2005 8:09 PM by Jon Galloway

Comments

# re: IE7 Standalone Launch Script

I knew there was a reason I kept that XP Virtual PC image laying around. :)

Wednesday, December 28, 2005 5:27 PM by David Findley

# re: IE7 Standalone Launch Script

> if they can't both run on the same machine

Isn't this why God invented virtual machines?

I forsee a not-too-distant future where every single app can opt to run in its own private WinXP VM. Less than 5 years, I think.

Wednesday, December 28, 2005 6:08 PM by Jeff Atwood

# re: IE7 Standalone Launch Script

Dude,

You rock... we've been going nuts over here with this issue. I even rolled back the update because I couldn't figure out what was causing it. You should charge for this... just don't charge me :)

Wednesday, December 28, 2005 6:40 PM by Bill Richardson

# re: IE7 Standalone Launch Script

David, Jeff -
VM's are cool, but they're a terribly inefficient solution for browser testing. A completely new OS install to configure and keep patched, just to test the site on two versions of the same browser?

The point of this post is that you can test multiple versions of IE on one machine without having to boot up a VM.

Wednesday, December 28, 2005 8:17 PM by Jon Galloway

# re: IE7 Standalone Launch Script

> A completely new OS install to configure and keep patched, just to test the site on two versions of the same browser?

According to Microsoft, IE isn't a browser-- it's a part of the operating system.

Maybe soon we'll be able to VM us up an Inteli-ified Apple OSX machine for Safari testing.

> The point of this post is that you can test multiple versions of IE on one machine without having to boot up a VM.

It's a helpful post, but it's also a case of "Doctor, it hurts when I do this."

http://www.eleganthack.com/archives/doctor_doctor_it_hurts_when_i_do_that.php

Thursday, December 29, 2005 1:36 AM by Jeff Atwood

# re: IE7 Standalone Launch Script

awesome ... many thanks & respects.

Thursday, December 29, 2005 8:29 AM by nobody

# re: IE7 Standalone Launch Script

Hmm... I try to do it, then try to install IE 6 But it won't install? can anybody fix this?

Friday, January 06, 2006 2:46 AM by Leave I. Meddiatly

# re: IE7 Standalone Launch Script

There's no need to install IE6 again. The whole idea of the script is that you leave IE6 as it is.

Friday, January 06, 2006 11:45 AM by Jon Galloway

# re: IE7 Standalone Launch Script

Thanks so much for posting this - I've spent hours trying to work out why I was getting all those problems.

Monday, January 09, 2006 8:28 PM by Andy

# re: IE7 Standalone Launch Script

Hello,

Very interesting. I am wondering if using a DOS .BAT file is mandatory? If not, can a .CMD file be used instead?

Regards,

Aryeh Goretsky

Monday, January 16, 2006 5:43 PM by Aryeh Goretsky

# re: IE7 Standalone Launch Script

Having a weird problem. The batch script worked one time correctly, but after that first time IE 7 just launches for a split second and then immediately closes. IE 6 and the other standalones are still working correctly. Anyone else seeing this/know how to fix it?

Wednesday, January 25, 2006 9:15 AM by Eli

# Internet Explorer 7 beta out - Wait till I come!

Internet Explorer 7 beta out - Wait till I come!

Wednesday, February 01, 2006 8:49 AM by TrackBack

# Developments, a personal weblog by Jeroen Zomer. Under construction, permanently.

Developments, a personal weblog by Jeroen Zomer. Under construction, permanently.

Sunday, April 30, 2006 8:33 PM by TrackBack

# TamerNet.com- Tamer Abdel-Baset web page &raquo; Blog Archive &raquo; Internet Explorer 7 uninstall problem

# Dee&#8217;s-Planet! &raquo; Test Internet Explorer 7 Without Installing It

# re: IE7 Standalone Launch Script

i did all that is write on this page and still doesnt work.when i click on ie7.exe to start i see a error :"the procedure entry point internetgetsecurityinfobyurlw could not be located in the dynamic lick library wininet.dll"    what i have 2 do to make the ie7 beta 2 work on my station? pls response!

Monday, May 29, 2006 10:51 AM by IUlian

# Run IE7 as a standalone browser window at Advanced CSS Design Resources - last-child.com

# re: IE7 Standalone Launch Script

When I use standalone IE7 beta 2, select controls (i.e., drop-downs) are treated as pop-ups and do not function (there is no option to temporarily allow pop-ups); however, when I use fully installed IE7 beta 2, there is no issue will select controls.  Is there a fix for this?

Wednesday, May 31, 2006 4:41 PM by Joe

# re: IE7 Standalone Launch Script

When I use standalone IE7 beta 2, select controls (i.e., drop-downs) are treated as pop-ups and do not function (there is no option to temporarily allow pop-ups); however, when I use fully installed IE7 beta 2, there is no issue will select controls.  Is there a fix for this?
Joe

Tuesday, June 06, 2006 6:06 AM by Standalone

# 1983

Wednesday, June 07, 2006 7:36 AM by 1983

# Multi-Safari

How to run multiple valid versions of Safari on one machine at the same time: Multi-Safari. Now, if only I could do this for IE/Windows&amp;hellip; (Yes, I know about the various hacks &amp;mdash; see here, here, and here if you...

Friday, June 09, 2006 7:34 PM by Backup Brain

# re: IE7 Standalone Launch Script

I tried installing ie7 according to the instructions - when I click the Page button I get "The procedure entry point InternetGetSecurityInfoByURLW could not be located in the dynamic lick library WININET.dll" - but I think it's not ie7, it's a "McAfee AutoUpdate: UpdaterUI.exe - Entry Point Not Found" ok box.
Any suggestions anyone ?

Seems to work - although some of the comments abou it fouling ie6 are a bit scary ...

Thanks
Chris

Thursday, June 15, 2006 4:33 AM by Chris Sharman

# re: IE7 Standalone Launch Script

can i use the same code for IE5 to 6 i mean i have IE5 and can i use the same trik to install IE6 will it work

Tuesday, June 20, 2006 11:30 PM by nadeem

# re: IE7 Standalone Launch Script

I tried installing ie7 according to the instructions.

It loads up but when I try to use it I get "The procedure entry point InternetGetSecurityInfoByURLW could not be located in the dynamic lick library WININET.dll"

Any suggestions anyone ?

Saturday, June 24, 2006 11:36 PM by jaburmester

# re: IE7 Standalone Launch Script

I tried installing ie7 according to the instructions.

It loads up but when I try to use it I get "The procedure entry point InternetGetSecurityInfoByURLW could not be located in the dynamic lick library WININET.dll"

Any suggestions anyone ?

Saturday, June 24, 2006 11:37 PM by jaburmester

# re: IE7 Standalone Launch Script

I am having probs with this!  I had IE7 installed, uninstalled it to use the standalone version, now I want to re-install IE7 Beta2.  Everytime i try to do this it tells me that it cannot complete the install and leaves me with IE6!  Any Ideas?

Sunday, June 25, 2006 12:00 AM by Stu

# re: IE7 Standalone Launch Script

Can this run on Win 2000 somehow? i dont have a virtual machine or anything for XP.

Sunday, June 25, 2006 1:11 PM by doh

# re: IE7 Standalone Launch Script

Thanks for the tip on this one.

Running the batch file as per the instructions works fine, but I also get the message as some others have reported; "The procedure entry point InternetGetSecurityInfoByURLW could not be located in the dynamic lick library WININET.dll".

Anyone got any ideas on this?

Bill

Thursday, June 29, 2006 10:09 AM by Bill Mudford

# IE 7 Beta 2 - Selbstversuch - Jowra - Web &#183; Photographs &#183; Artwork

# re: IE7 Standalone Launch Script

It is not working for IE7 Beta 3. What is wrong? Please let us know. Thanks for help

Friday, June 30, 2006 11:11 AM by ie7beta3

# ie7beta3

This .bat is realy a great peace of code.

Good luck for finding out a fix for beta 3 !

Monday, July 03, 2006 6:38 AM by TestMan

# re: IE7 Standalone Launch Script

Looking forward for updated version...

Monday, July 03, 2006 12:22 PM by FataL

# re: IE7 Standalone Launch Script

Can't wait any more!

Monday, July 03, 2006 5:29 PM by Zeox

# re: IE7 Standalone Launch Script

Checking new launch script for IE7 beta3 :)

Tuesday, July 04, 2006 2:54 PM by ileadu

# re: IE7 Standalone Launch Script

Come On!

Monday, July 10, 2006 3:01 AM by icqoicq

# re: IE7 Standalone Launch Script

This is what I'm getting from windows update now that I've gone back to IE6 form IE7 beta3 and I can't get updates

Anyone??

email me if you know

Thank you

mr_wilson@comcast.net

--------------

Thank you for your interest in obtaining updates from our site.

To use this site, you must be running Microsoft Internet Explorer 5 or later.

To upgrade to the latest version of the browser, go to the Internet Explorer Downloads website.

If you prefer to use a different web browser, you can obtain updates from the Microsoft Download Center or you can stay up to date with the latest critical and security updates by using Automatic Updates. To turn on Automatic Updates:

Click Start, and then click Control Panel.

Depending on which Control Panel view you use, Classic or Category, do one of the following:

Click System, and then click the Automatic Updates tab.

Click Performance and Maintenance, click System, and then click the Automatic Updates tab.

Click the option that you want. Make sure Automatic Updates is not turned off.

Tuesday, July 11, 2006 6:55 PM by Wilson

# re: IE7 Standalone Launch Script

Can you be quick?

Wednesday, July 12, 2006 7:17 PM by alsheng

# re: IE7 Standalone Launch Script

This might be worth checking out:

http://tredosoft.com/IE7_standalone ; a launch script and a cleanup script for MSIE beta 3 by Yousif

Thursday, July 13, 2006 4:05 AM by Anneke

# re: IE7 Standalone Launch Script

When do you think a script will be available for ie7beta3 so developers can run both ie6 and ie7beta3?  i have tired the above but as you said it only works on ie7beta2 which is no longer available to download since MS released beta3...

Monday, July 17, 2006 3:11 AM by Sean

# re: IE7 Standalone Launch Script

I appreciate what Jon has done here, but wouldn't life be a lot easier if you just installed IE7 Beta 3 in a virtual machine?

http://www.codinghorror.com/blog/archives/000646.html

As documented in the blog post above, my XP SP2 virtual machine image with IE7 beta 3 installed is ~740 megabytes. It runs fine in 128 megs of memory, too.

Friday, July 28, 2006 7:46 PM by Jeff Atwood

# re: IE7 Standalone Launch Script

Thanks for working this out, it will save me alot of time.  Does anyone else notice that links that open in a new window don't seem to work?  For example, on a yahoo search result, the new window icon located to the right of the link title doesn't work.  I assume it's becuase IE7 isn't fully installed, but maybe there is a way to get that link to work with you script.

Monday, July 31, 2006 2:18 PM by Rick Plagge

# re: IE7 Standalone Launch Script

Thanks a lot man your a f---ing god. I couldn't open ie6 for over six months until I found this website. I won't be installing ie7 beta2 again, NEVER

Monday, July 31, 2006 7:56 PM by John

# re: IE7 Standalone Launch Script

dude u are a freakin genius...u did seem to clear my problems about runnin da freagin ie program...but wht should i do 4 uninstallin ie 7 beta 2 so tht i can install it properly again or mabbe install ie beta 3 ... plz do advice, me id is vivek0406@hotmail.com

Wednesday, August 16, 2006 12:21 PM by vivek

# re: IE7 Standalone Launch Script

Thanks for all standalone versions!

Unfortunately it seems that IE7beta3 launcher does not work with IE7 release candidate 1 :-(

http://www.microsoft.com/downloads/details.aspx?FamilyId=94E5BF41-2907-4415-8F72-DA7C2C2ACE09&displaylang=en

Friday, August 25, 2006 2:03 AM by Martin Hlozek

# re: IE7 Standalone Launch Script

IE7 RC1 Release

Thanks for your work!

http://www.microsoft.com/windows/ie/downloads/default.mspx

Saturday, August 26, 2006 12:54 AM by ileadu

# re: IE7 Standalone Launch Script

Thank you !!!!!!!I've been on the line with Microsoft india for 4 hrs with no answer to this issue.

Thank you:) you've made my day.

Tuesday, August 29, 2006 12:04 AM by FM Ink

# re: IE7 Standalone Launch Script

Any timeline on a script that works with RC1? Thanks!

Tuesday, August 29, 2006 1:30 PM by Nate

# re: IE7 Standalone Launch Script

Thursday, August 31, 2006 2:58 AM by Some inspiration from tredosft

# Problems with IE7b3 and IE7rc1

Don't know if these are problems with the launcher scripts or with IE7 itself -- I currently don't have a virtual machine at hand to test a "real" install.

Problem 1: "onchange" event on form elements causes the Information bar to appear telling me that a popup was blocked, even if popup blocking is disabled.  This happens at least with <select> and <input type="file"/>.  Result: the dropdown menu for the select element never appears as does the "Open" dialog window for the <input type="file"/> element.

Problem 1 is affected by:

Launcher script 1.5 + IE7b3

Launcher script 1.6 + IE7b3

Launcher script 1.6 + IE7rc1

Problem 2: "onclick" event on anchor link doesn't work.  This has the nasty side effect that the page may redirect to the base of the current directory since most links with an onclick event have an empty href attribute.

Problem 2 is affected by:

Launcher script 1.6 + IE7b3

Launcher script 1.6 + IE7rc1

Since this doesn't happen with launcher script 1.5, I *presume* it's an issue with the new script.

Friday, September 08, 2006 2:35 PM by Tomcat76

# re: IE6 Standalone Launch Script on Vista RC1

A solution for run an IE6 Standalone on Vista RC1 ?

Thanks

Monday, September 18, 2006 7:13 PM by Alteiis

# re: IE7 Standalone Launch Script

*Cheeeeeeeeeeeeeer*

Friday, September 29, 2006 7:51 AM by Jollypants

# re: IE7 Standalone Launch Script

I am wondering how can we finally have both IE7 and IE6 working at full power on one machine. Maybe the solution would be to run IE7 full installation and IE6 in standalone mode, but I couldn't find enough informations. Can anybody shed some light on this?

./alex

--

.w( the_mindstorm )p.

Saturday, October 21, 2006 1:06 PM by Alex Popescu

# re: IE7 Standalone Launch Script

You're right. Since IE7 will be an automatic update, it is likely to spread faster.  It might be best to just install IE 7 and find a way to make 6 standalone for testing purposes...

Monday, October 23, 2006 10:54 AM by Jive

# mInNaL's Blog - IE7: Using IE6 and IE7 together

Tuesday, October 24, 2006 3:55 AM by mInNaL's Blog - IE7: Using IE6 and IE7 together

# re: IE7 Standalone Launch Script

When i click on a link it takes back the root page. If however i copy the shortcut of a link and paste it in the address bar, it works??

How strange

Monday, October 30, 2006 2:51 PM by Abs

# re: IE7 Standalone Launch Script

Hi,

I installed IE7 but a number of sites I need to access to pay bills don't support it. I was told that deleteing it will automatically revert me to IE6 but that didn't work. I used Add/Remove in the Control Panel but it didn't remove IE7. HELP, PLEASE!

Thank you.

Wednesday, November 22, 2006 11:43 AM by Patrick Dillon

# re: IE7 Standalone Launch Script

Same problem as P Dillon , but slightly worse . IE7 will not allow me to uninstall it , causing me no end of problems ,wont allow me to install Active X controls , the list goes on .   Microsoft no use , 30 mins on phone support waiting , on prime tel charge time  for techie , gave up in the end . Can anyone help , PLEASE!!!

Monday, November 27, 2006 6:36 AM by Irene

# re: IE7 Standalone Launch Script

Install worked great and I can run IE6 and IE7 side by side! The only problem I'm having is that dropdown menus are setting off the pop-up blocker that is built into IE7.  Even when I add the site to a list of ok sites for pop-ups.  I have also tried turning the pop-up blocker off and it's still not working.  I am using your standalone script 1.8 and IE7 RC1

Tuesday, January 09, 2007 8:46 AM by Barry Odoms

# re: IE7 Standalone Launch Script

ERROR=iexplore.exe-Entry Point Not Found: The Procedure Entry Point "InternetGetSecurityInfoByURLW" Could Not Be Located In The Dynamic Link Library WINNET.dll.

guys i get this error start IE7 beta and cant geystem restore , however mozilla works fine. any help here would be mcuh appreciated. pls suggest. thanks

rock

Monday, February 12, 2007 2:23 AM by ROCK

# re: IE7 Standalone Launch Script

Hello when i run ie.bat tell me that cannot find the http://

Any idea?

Tuesday, February 20, 2007 1:32 PM by Mariah

# re: IE7 Standalone Launch Script

On personal opinion, I find this very helpful.

Guys, I have also posted some more relevant info further on this, not sure if you find it useful: http://www.bidmaxhost.com/forum/

Tuesday, March 20, 2007 1:52 PM by alex

# re: IE7 Standalone Launch Script

I had the same symptom where in IE 6, whenever I typed a web address and hit enter or clicked on "go" it would launch the page in firefox.

A very similar solution, which wouldn't require a DOS prompt to be kept open while IE 7 is running would be:

1. Open Notepad, paste the (below):

------------

Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\CLSID\{C90250F3-4D7D-4991-9B69-A5C5BC1C2AE6}]

---------------

Save this in your IE7 Standalone folder as "deletekey.reg"

2. Open notepad again, and paste the following:

------------

regedit /S "C:\Program Files\IE7\deletekey.reg"

start iexplore

------------

Save this file as "IE6.bat" in your IE6 folder.  If you create a shortcut to this batch file, you can also change the icon to the IE6 icon as well (right click-properties).  

Notes:

- Make sure the path matches in the regedit line to point to the registry file

- This is assuming that iexplore from your run command still runs ie 6

Hope that helps,

Kei

Seattle Web Designer

http://www.immotion.net

Thursday, April 19, 2007 1:40 PM by Immotion

# re: IE7 Standalone Launch Script

[URL=http://www.liberib072.org/diocesi] diocesi [/URL]   <a href='http://www.liberib072.org/diocesi'> diocesi </a> [URL=http://www.liberib072.org/1000] 1000 [/URL]   <a href='http://www.liberib072.org/1000'> 1000 </a> [URL=http://www.liberib072.org/perle] perle [/URL]   <a href='http://www.liberib072.org/perle'> perle </a> [URL=http://www.liberib072.org/resources] resources [/URL]   <a href='http://www.liberib072.org/resources'> resources </a> [URL=http://www.liberib072.org/european] european [/URL]   <a href='http://www.liberib072.org/european'> european </a> [URL=http://www.liberib072.org/carolina] carolina [/URL]   <a href='http://www.liberib072.org/carolina'> carolina </a> [URL=http://www.liberib072.org/piace] piace [/URL]   <a href='http://www.liberib072.org/piace'> piace </a> [URL=http://www.liberib072.org/somma] somma [/URL]   <a href='http://www.liberib072.org/somma'> somma </a> [URL=http://www.liberib072.org/telecomunicazioni] telecomunicazioni [/URL]   <a href='http://www.liberib072.org/telecomunicazioni'> telecomunicazioni </a> [URL=http://www.liberib072.org/staff] staff [/URL]   <a href='http://www.liberib072.org/staff'> staff </a> [URL=http://www.liberib072.org/palace] palace [/URL]   <a href='http://www.liberib072.org/palace'> palace </a> [URL=http://www.liberib072.org/3000] 3000 [/URL]   <a href='http://www.liberib072.org/3000'> 3000 </a> [URL=http://www.liberib072.org/sotto] sotto [/URL]   <a href='http://www.liberib072.org/sotto'> sotto </a> [URL=http://www.liberib072.org/richard] richard [/URL]   <a href='http://www.liberib072.org/richard'> richard </a> [URL=http://www.liberib072.org/popolazione] popolazione [/URL]   <a href='http://www.liberib072.org/popolazione'> popolazione </a> [URL=http://www.liberib072.org/marcio-mondo] marcio mondo [/URL]   <a href='http://www.liberib072.org/marcio-mondo'> marcio mondo </a> [URL=http://www.liberib072.org/grafico] grafico [/URL]   <a href='http://www.liberib072.org/grafico'> grafico </a> [URL=http://www.liberib072.org/pace] pace [/URL]   <a href='http://www.liberib072.org/pace'> pace </a> [URL=http://www.liberib072.org/senigallia] senigallia [/URL]   <a href='http://www.liberib072.org/senigallia'> senigallia </a> [URL=http://www.liberib072.org/dante] dante [/URL]   <a href='http://www.liberib072.org/dante'> dante </a> [URL=http://www.liberib072.org/istituti] istituti [/URL]   <a href='http://www.liberib072.org/istituti'> istituti </a> [URL=http://www.liberib072.org/cassa] cassa [/URL]   <a href='http://www.liberib072.org/cassa'> cassa </a> [URL=http://www.liberib072.org/sella] sella [/URL]   <a href='http://www.liberib072.org/sella'> sella </a> [URL=http://www.liberib072.org/grafiche] grafiche [/URL]   <a href='http://www.liberib072.org/grafiche'> grafiche </a> [URL=http://www.liberib072.org/win32] win32 [/URL]   <a href='http://www.liberib072.org/win32'> win32 </a>

Friday, May 11, 2007 4:18 PM by ...

# re: IE7 Standalone Launch Script

pagine piuttosto informative, piacevoli =)

Thursday, May 24, 2007 11:46 AM by ...

# re: IE7 Standalone Launch Script

Sunday, July 01, 2007 5:33 PM by Lohness

# re: IE7 Standalone Launch Script

Are there any updates on this?

Sunday, August 12, 2007 11:36 PM by Ramil

# re: IE7 Standalone Launch Script

Hi, nice very nice page..!

<a href="allfunds.free-site-host.com/mutual-fund-company/index.html">fund raising strategy</a>

<a href="allfunds.free-site-host.com/world-wildlife-fund/index.html">fund of hedge funds</a>

[URL=allfunds.free-site-host.com/fund-raising-strategy/index.html]high school fund raiser[/URL]

world wildlife fund - allfunds.free-site-host.com/provident-fund/index.html

<a href="allfunds.free-site-host.com/fund-raising-strategy/index.html">world wildlife fund</a>

Good luck !

PS: do you listen Linkin Park ?

Tuesday, September 11, 2007 5:33 AM by Berrip

Leave a Comment

(required) 
(required) 
(optional)
(required)