Ver Mensaje Individual
  #27 (permalink)  
Antiguo 18/01/2008, 13:19
black_unicorn
 
Fecha de Ingreso: enero-2008
Mensajes: 30
Antigüedad: 16 años, 3 meses
Puntos: 0
Re: --- ¿¿¿ Como Puedo Hacerlo ??? ---

Cuales son los pasos para ejecutar ésas lineas de código?

--------------------------------------------------------------------------------------------------------------------
segun este POST y en este otro POST de Microsoft, toman tambien ese tema de conexion, al parecer es error en los permisos del usuario, quiero pensar que probablemente repare tu error, chekalo, y nos cuentas como te fue.... ok?

basicamente te piden que realizes este tipo de accion, para autentificar a los usuarios anonimos


Try the following:
("INTENTAR LO SIGUIENTE")

%windir%\system32\inetsrv\appcmd set appPool "DefaultAppPool" -processModel.loadUserProfile:false

OR assuming your ASP page has anonymous authentication enabled:
("O ASUMIENDO QUE LA PAGINA ASP TIENE ACTIVADO EL ACCESO ANONIMO")



icacls %WINDIR%\ServiceProfiles\NetworkService\AppData\Lo cal\temp /grant IUSR:(CI)(RX,WD,AD)
icacls %WINDIR%\serviceprofiles\networkservice\AppData\Lo cal\Temp /grant "CREATOR OWNER":(OI)(CI)(IO)(F)

If you use authentication you should use this command:
("SI USAS AUTENTIFICACION DEBES USAR ESTE COMANDO")



icacls %WINDIR%\ServiceProfiles\NetworkService\AppData\Lo cal\temp /grant Users:(CI)(RX,WD,AD)



icacls %WINDIR%\serviceprofiles\networkservice\AppData\Lo cal\Temp /grant "CREATOR OWNER":(OI)(CI)(IO)(F)
---------------------------------------------------------------------------------------------------------------------