Jump to content
Tuts 4 You

Way To Disable "homepage" Related Buttons In Internet Explor


crackworld

Recommended Posts

Does any one know,

How to disable those 3 buttons in I.E's Internet OPtions Dialog Box,

wher we can change the default homepage address etc.?

there r 3 buttons name "default" "blank" and anothr1

Actually i have seen many viruses and trojans also disabling that and infected user cant change that easily.

i think changes r done at registry level only for dat but i cant find any thing.. :(

i wonder how these do that way?

Thanks in advance.

Edited by crackworld
Link to comment
Share on other sites

TO BE EXACT ,, i need the disable the following encircled buttons---

4yz2v5l.jpg

@Loki

That was a kinda bit of indirect/incomplete solution

Still,

Thanks.

Link to comment
Share on other sites

If in case you are programming . . . this should work

Local windown_handle:DWORD

invoke FindWindow,NULL,chr$("Internet Options") ; FindWindow with name Internet Options

mov windown_handle,eax ; move its value into Local buffer

cmp eax,0h

je notfound

invoke FindWindowEx,windown_handle,NULL,chr$("button"),chr$("&Use Blank") Find Child Window with Name 'Use Balnk' and ClassName 'Button'

cmp eax,0h

je ovaok

mov ebx,eax

invoke SetWindowText,eax,chr$("Disabled !") ; Set Text

invoke EnableWindow,ebx,FALSE ; Disable the Window

ovaok:

notfound:

Link to comment
Share on other sites

1) Patch Exe

Or

2) Hook the window creating event and then use starzboy/equivalent code to enable the button

So you don't code at all? Can I ask why you need to do this?

Link to comment
Share on other sites

Not really dear. i hardly code.... just few editing stuff sometimes ...just HTML , bit PHP etc .

Actually i did learn some redundant stuff like foxpro, some amount of "C" and some rdbms stuff a long way back durin school dayz.

Thou i m lookin an Vb now a dayz when i get time..

Actually i m in altogether different profession nd pepl from there call me mad dat way :P ,, when i talk this stuff 2 them.

Regardin the topic of discussion,,i wanna restrict a specific pc user to a specific site so that he is not able to change those very home page link and dats all..

1 thing more,, actually i dont wanna add more restrictions like banning Cp access etc etc.

i hope u must be having a more helpful advise for me ,next..! :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...