When IE8 terminates unexpectedly, then is restarted, there comes a box offering to "restore last session" or "go to homepage" and it sits there until one of those buttons is clicked.
What I'm looking for is a way to make "go to homepage" default, preferably supressing the dialogue, too.
Is there any way to do it? Please advise.
PS: Of course I could use NirCMD to detect the dialogue box and send a click to it. But that's an ugly hack, since there is no way to predict when the box will be there and when it won't, and it won't be there most of the time. I hope there may be something neater than that.
Page 1 of 1
[SOLVED] Auto-"go to homepage" in IE8... Is there a way to do
#2
Posted 17 June 2011 - 04:02 AM
Maybe autoit can do it.
To click only 1 time after crash, maybe
To let the script run eternally,
Edit:
Alternatively, see if this link helps
To click only 1 time after crash, maybe
$T1="Internet Explorer" $T2="Go to home page" Winwait ($T1,$T2) Winactivate ($T1,$T2) ControlClick ($T1,$T2,$T2)
To let the script run eternally,
$L=1 Do $T1="Internet Explorer" $T2="Go to home page" Winwait ($T1,$T2) Winactivate ($T1,$T2) ControlClick ($T1,$T2,$T2) $L = $L + 1 Until $L = -1
Edit:
Alternatively, see if this link helps
This post has been edited by Geej: 17 June 2011 - 06:50 AM
#3
Posted 21 June 2011 - 01:25 AM
Great, Geej, thanks! 
NoReopenLastSession=1 did it all right!
NoReopenLastSession=1 did it all right!
#4
Posted 26 July 2011 - 04:09 AM
Well... sort of.
It seems I spoke too soon.
But now I've found the answer:
Go to Tools --> Internet Options --> Advanced --> Browsing and untick "Enable automatic crash recovery"
That suppresses the dialogue box, after IE crashes. And then it goes to the default homepage, as required.
I'm posting it here just for the record, so that others may find it, on searching.
Later edit: This solution has a serious downside, in that it makes IE8 much more prone to crash or close suddenly, as descibed and discussed here.
It seems I spoke too soon.
But now I've found the answer:
Go to Tools --> Internet Options --> Advanced --> Browsing and untick "Enable automatic crash recovery"
That suppresses the dialogue box, after IE crashes. And then it goes to the default homepage, as required.
I'm posting it here just for the record, so that others may find it, on searching.
Later edit: This solution has a serious downside, in that it makes IE8 much more prone to crash or close suddenly, as descibed and discussed here.
- ← Batman tv screensaver
- Software Hangout
- How to Add *.img File of ghost to a bootable DVD Without Floppy →
Share this topic:
Page 1 of 1



Help
Back to top









