activex

G

Guest

when I try to open control panel I get an error message that says that my
current security settings prohibit running activex.

I need help in solving this.

thanks,
 
M

Mistoffolees

mgpk said:
when I try to open control panel I get an error message that says that my
current security settings prohibit running activex.

I need help in solving this.

thanks,


Active-X settings can be changed under Properties of
Internet Explorer. Go to the Security Tab and make the
changes there. Be aware, however, thet some malware,
spyware or adware rely on an enabled Active-X setting.
 
G

Guest

Is there a site that indicates what the security settings should be in order
to not get the message I have noted below?

thanks,
 
G

George Hester

The folowing is a vbs file call it MyComputer.vbs

set shell = createobject("wscript.shell")
'=====
'Changing this under the HKLM makes it effective for all users
'at next logon...
'=====
HKLM_MyComputer_key = _
"HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion" _
&"\Internet Settings\Zones\0\"
valuename = "Flags"
shell.RegWrite HKLM_MyComputer_key & valuename, 1, "REG_DWORD"
'=====
'Changing this under the HKCU makes it effective for this user
'immediately and at every logon...
'=====
HKCU_MyComputer_key = _
"HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion" _
&"\Internet Settings\Zones\0\"
valuename = "Flags"
shell.RegWrite HKCU_MyComputer_key & valuename, 1, "REG_DWORD"

msgbox _
"The 'My Computer' security zone " _
& "is now visible in the IE security dialog."

wscript.quit


Now you execute this in the command prompt by:

cscript MyComputer.vbs

and then say OK.

You will find when you go to right-click IE icon on desktop | Properties | Security you will see MyComputer on the far
right. Select that then Custom Level... | enable everything if you trust your computer.

For ActiveX in the Internet Security Zone you should have disabled all ActiveX whcich are not signed or unsafe and the
rest you can enable. Note this does not protect you from malicious ActiveX on the web but believe me nothing in that
area can so it is kind of superflous.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top