windows - predeterminada - modo de documento emulador internet explorer
Leyendo el registro de modo protegido de Internet Explorer (3)
Estoy aprendiendo el registro con vbscript en el lateral. Me gustaría saber si strValuname
y dwValue
de la función del modo protegido de Internet Explorer mediante el uso de vbscript.
Intenté buscar en el registro en strKeyPath
en vano. Tampoco pude encontrar la ruta de registro para
"HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Policies/System/EnableMIC"
Estaba usando Windows7 cuando no pude encontrar la ubicación de registro anterior.
Gracias
¿Que es exactamente lo que está buscando? El modo protegido está controlado por la URLAction 0x2500 que encontrará en las teclas HKEY_CURRENT_USER / Software / Microsoft / Windows / CurrentVersion / Internet Settings / Zones.
Aquí hay un pequeño script vbs que deshabilita el modo protegido para las cuatro áreas:
Const HKEY_CURRENT_USER = &H80000001
strComputer = "."
Set ScriptMe=GetObject("winmgmts:{impersonationLevel=impersonate}!//" & _
strComputer & "/root/default:StdRegProv")
''Disable protected mode for local intranet''
strKeyPath = "Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/1/"
strValueName = "2500"
dwValue = 1
ScriptMe.SetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue
''Disable protected mode for trusted pages''
strKeyPath = "Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/2/"
strValueName = "2500"
dwValue = 3
ScriptMe.SetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue
''Disable protected mode for internet''
strKeyPath = "Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/3/"
strValueName = "2500"
dwValue = 3
ScriptMe.SetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue
''Disable protected mode for restricted sites''
strKeyPath = "Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/4/"
strValueName = "2500"
dwValue = 3
ScriptMe.SetDWORDValue HKEY_CURRENT_USER,strKeyPath,strValueName,dwValue
Guárdelo en * .vbs y haga doble clic para ejecutarlo. Desde la línea de comandos usa este comando:
cscript.exe PATH_TO_THE_VBS_FILE
Finalmente, si desea hacerlo manualmente en el registro con regedit, 0 para habilitar, 3 para deshabilitar, el DWORD con el nombre 2500 en las siguientes carpetas:
modo protegido para intranet local
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/1/
modo protegido para páginas de confianza
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/2/
modo protegido para internet
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/3/
modo protegido para sitios restringidos
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/4/
Puede hacer esto leyendo la tecla ''2500'' en
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Internet Settings/Zones/3
Donde 3
significa que el modo protegido está desactivado y 0
significa habilitado.