D
Dave \Crash\ Dummy
I discovered (to my annoyance) some time ago that when IE is run as an
application object in a VB script on my 64 bit Windows machine, the 64
bit IE kernel is used, and if IE is called when the script IE is
running, say by clicking a link, IE x64 is called instead of IE x86. So,
to effectively make IE x64 the default browser, I just have to run a
small script (one line) to activate the InternetExplorer application.
'================== IE64run.vbs =================
Set IE = CreateObject("InternetExplorer.Application")
'=============================================
This can be done manually, or from the Startup folder. To disable it,
use the Task Manager.
I have only just come up with this scheme, so I don't know if it will
work (or is desirable) in all situations. Also, I am running IE 8 not
IE 9. Feedback welcome and desired.
application object in a VB script on my 64 bit Windows machine, the 64
bit IE kernel is used, and if IE is called when the script IE is
running, say by clicking a link, IE x64 is called instead of IE x86. So,
to effectively make IE x64 the default browser, I just have to run a
small script (one line) to activate the InternetExplorer application.
'================== IE64run.vbs =================
Set IE = CreateObject("InternetExplorer.Application")
'=============================================
This can be done manually, or from the Startup folder. To disable it,
use the Task Manager.
I have only just come up with this scheme, so I don't know if it will
work (or is desirable) in all situations. Also, I am running IE 8 not
IE 9. Feedback welcome and desired.