Código de Error de Windows 0x80070035
El código de error 0x80070035 es un código de error del sistema Windows que representa el mensaje "La ruta de red no se encontró" (in English, "The network path was not found"). Este error pertenece a la familia de códigos HRESULT, específicamente en el ámbito de los errores del sistema Win32, y se asocia con problemas de conectividad de red. In the context of Windows 10 Y 11, este código es significativo porque afecta operaciones relacionadas con el acceso a recursos compartidos en redes locales o remotas, como carpetas SMBThe SMB Protocol (Server Message Block) is a network protocol used to share files, printers and other resources on a local network. Originally developed by IBM in the years 80, It has evolved over time and is mainly used in Windows operating systems.. SMB enables efficient communication between devices, facilitating access and management of data in network environments. Your implementation may vary, existing.... More (Server Message Block), impresoras o servicios de red. Su aparición indica fallos en la resolución de rutas de red, lo que puede interrumpir flujos de trabajo en entornos empresariales, sistemas de administración de redes y aplicaciones que dependen de protocolos como TCP/IPTCP/IP, which means transmission control protocol/Internet protocol, It is a set of fundamental protocols for communication in computer networks. Developed in the years 70, TCP/IP allows the interconnection of different devices and operating systems, guaranteeing efficient data transmission. This protocol consists of two main layers: TCP, that is responsible for reliable delivery of data, y IP, that manages addressing and routing ... More o SMB.
Introducción
El código de error 0x80070035 ha sido una constante en el ecosistema de Windows desde versiones tempranas, pero su relevancia se ha intensificado en Windows 10 Y 11 debido al mayor énfasis en la conectividad de red, la integración con Azure y el trabajo remoto. Este error se genera cuando el sistema operativo no puede localizar una ruta de red especificada, lo que suele ocurrir durante intentos de acceso a recursos compartidos en una red, como al mapear una unidad de red o al ejecutar comandos como net use. In Windows 10 Y 11, este código está estrechamente relacionado con componentes como el Servicio de Cliente de Red (Workstation Service), el Servicio de Servidor (Server Service) y el Protocolo de Bloque de Mensajes del Servidor (SMB), que son esenciales para la comunicación entre dispositivos.
In common scenarios, los usuarios avanzados, como administradores de sistemas o desarrolladores, pueden encontrar este error al configurar entornos de desarrollo, implementar soluciones de virtualización o gestionar redes corporativas. For example, in Windows 11, where security is prioritized with features like network isolation and integration with Microsoft Defender, el error 0x80070035 puede surgir durante la configuración de redes híbridas o al lidiar con políticas de grupo que restringen el acceso. Su importancia radica en que no solo denota un problema de red inmediato, sino que puede indicar configuraciones subyacentes defectuosas, como conflictos en el firewall o problemas de DNSThe Domain Name System (DNS, by its acronym in English) is a fundamental component of the Internet that translates human-readable domain names, like www.ejemplo.com, in numerical IP addresses that computers can understand. This process allows users to access websites easily, no need to remember long strings of numbers. DNS also plays a crucial role in security and...., que afectan la estabilidad general del sistema. Según documentación de Microsoft, este error es parte de los códigos de error del sistema que ayudan a diagnosticar fallos en la pila de red, facilitando la resolución proactiva en entornos de TI.
Detalles Técnicos
El código de error 0x80070035 es un HRESULT, un formato estandarizado utilizado en Windows para representar errores y advertencias. La estructura de un HRESULT se compone de varios componentes binarios: un bit de severidad, un código de instalación (facility), un código reservado y un código de error específico. En notación hexadecimal, 0x80070035 se descompone de la siguiente manera:
- Severidad (bit más significativo): El valor 0x8 indica un error grave (SEVERITY_ERROR), lo que significa que el problema requiere atención inmediata, ya que representa una condición de fracaso en la operación.
- Código de instalación (facility): El valor 0x007 (FACILITY_WIN32) señala que este error proviene del subsistema Win32, que incluye APIs y funciones relacionadas con el núcleo del sistema operativo, como el acceso a archivos y redes.
- Código reservado: No aplicable en este caso, ya que está reservado para usos específicos de Microsoft.
- Specific error code: El valor 0x0035 corresponde al código Win32 ERROR_BAD_NETPATH (decimal code 53), que se define en el archivo de encabezado
winerror.hof the SDKA Software Development Kit (SDK) is a set of tools and resources that allow developers to create applications for a specific platform. Usually, an SDK includes libraries, documentation, code examples and debugging tools. Its goal is to simplify the development process by providing reusable components and facilitating the integration of functionality.. SDKs are essential in modern software development, since they allow.... More Windows. Este código indica que la ruta de red especificada no existe o no es accesible.
En términos técnicos, este error se genera a través de APIs como NetShareEnum, WNetAddConnection O CreateFile cuando estas fallan en resolver una ruta de red. For example, al intentar acceder a una carpeta compartida mediante SMB, el sistema verifica la disponibilidad de la ruta utilizando el protocolo NetBIOS o SMBv1/v2/v3, dependiendo de la configuración. In Windows 10 Y 11, el error puede involucrar procesos como svchost.exe (que aloja servicios de red) O lsass.exe (para autenticación), y depende de componentes como el Administrador de Red (Network Manager) y el Servicio de Descubrimiento de Red (Network Discovery).
Las especificaciones técnicas de Microsoft, disponibles en el SDK de Windows, detallan que este error puede propagarse a través de interfaces COM (Component Object Model)The Component Object Model (COM, by its acronym in English) is a Microsoft technology that allows communication between software components in different programming languages and platforms. Introduced in the years 90, COM makes it easy to create modular applications, where components can be reused in different contexts. Use unique identifiers (GUID) to identify components and their interfaces, ensuring interoperability. Although it has been in.... More o WinRT (Windows Runtime), afectando aplicaciones que utilizan el modelo de programación asíncrona. For instance, en un script de PowerShellPowerShell is a configuration management and automation tool developed by Microsoft.. Allows system administrators and developers to run commands and scripts to perform administration tasks on Windows operating systems and other environments. Its object-based syntax makes data manipulation easy, making it a powerful option for systems management. What's more, PowerShell has an extensive library of cmdlets, So..., un comando como New-PSDrive podría devolver 0x80070035 si la ruta UNC (Universal Naming Convention) no se resuelve correctamente. What's more, este error está vinculado a dependencias como el servicio "Trabajo en red" (Workstation) y "Servidor" (Server), que deben estar en ejecución y configurados correctamente para evitar interrupciones. En entornos de Windows 11, las actualizaciones de seguridad como SMB Multichannel pueden influir en su aparición, requiriendo una comprensión profunda de la pila de red para su diagnóstico.
Causas Comunes
Las causas del error 0x80070035 suelen estar relacionadas con problemas de configuración de red, conflictos de software o fallos en la infraestructura subyacente. Then, the most frequent ones are detailed, with examples to illustrate real scenarios:
-
Rutas de red incorrectas o inexistentes: This is the main cause, donde el sistema no puede resolver una dirección UNC (for example,
\servidorcarpeta). Ocurre cuando el nombre del servidor no se resuelve mediante DNS o WINS, o si el recurso ha sido eliminado. For example, en una red corporativa, trying to access\192.168.1.100compartidowill fail if the server at that IP is not active. -
Firewall and security issues: Strict settings in the Firewall de WindowsWindows Firewall is a security tool built into Windows operating systems that helps protect your computer from unauthorized access and external threats.. It works by blocking or allowing network traffic based on a set of rules defined by the user or the system. What's more, offers configuration options that allow you to adjust the level of protection according to the user's specific needs. It is essential to maintain.... or in third-party software like antivirus can block SMB traffic. In Windows 11, policies that Working GroupAnd "Working Group" It is an organizational structure composed of a set of people who meet with the aim of addressing a specific topic or solving a certain problem. These groups are usually made up of members from various areas or disciplines, which allows to integrate different perspectives and knowledge. Collaboration in a working group favors creativity and innovation, while optimizing use ... (Group Policy) disable SMBv1 or require Kerberos authentication can cause this error if the client does not meet the requirements.
-
Network configuration conflicts: DNS errors, IP routing issues or invalid entries in the hosts file can prevent name resolution. For instance, if a server has an incorrect DNS record, commands like
ping servidorwill fail, leading to 0x80070035 when trying to access shared resources. -
Insufficient permissions or authentication problems: El error puede surgir si el usuario no tiene derechos para acceder al recurso, como en casos de cuentas de dominio expiradas o fallos en NTLM/Kerberos. En entornos de Windows 10 with Azure AD, a token de autenticaciónEl token de autenticación es un elemento crucial en la seguridad informática, utilizado para verificar la identidad de un usuario en sistemas digitales. Este token, que puede ser físico o digital, generate a unique code that is used during the login process. Unlike traditional passwords, tokens offer an additional layer of security by requiring the user to have this device or temporary code. inválido podría bloquear el acceso.
-
Conflictos de software o servicios inactivos: Aplicaciones que interfieren con servicios de red, como un VPNA VPN, o Virtual Private Network, is a tool that allows you to create a secure and encrypted connection over the Internet. Its main function is to protect the user's privacy by hiding their IP address and encrypting the transmitted data.. This is especially useful when using public Wi-Fi networks, as it reduces the risk of interception of sensitive information. What's more, VPNs can help access geo-restricted content,... More mal configurado, o servicios como "Cliente de Bloque de Mensajes del Servidor" detenidos, can cause this error. For example, si el servicio "Workstation" está en estado "Detenido", cualquier intento de conexión de red fallará.
-
Problemas de hardware o conectividad: Fallos en adaptadores de red, D, e 11 f.
e; for example, c.
Pasos de Resolución
t, advanced users should follow a systematic approach that includes tools for command lineThe command line is a textual interface that allows users to interact with the operating system using written commands.. Unlike graphical interfaces, where icons and menus are used, The command line provides direct and efficient access to various system functions. It is widely used by developers and system administrators to perform tasks such as file management, network configuration and...., registry editing and scripts. Es crucial destacar los riesgos, i, v; e.
-
Check basic network connectivity: c
ipconfig /allapingb. l. -
e: Use the System File Checker (SFC) and DISM to repair corrupt files. Run the following in an elevated command window:
sfc /scannowIf SFC doesn't fix the problem, try:
DISM /Online /Cleanup-Image /RestoreHealthThis restores system components related to networking.
-
Diagnose specific network problems: Use tools like
net viewto list shared resources andnbtstat -nto check NetBIOS. For a deeper analysis, run a PowerShell script:powershell Test-NetConnection -ComputerName -Port 445This checks if the SMB port (445) is open.
-
Edit network and registry settings: If necessary, modify the registry to enable SMB or adjust network settings. For example, navegue a
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesLanmanServerParametersand make sureSmb1be configured correctly (use with caution and back up the registry first). Run:reg add "HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlNetworkProvider" /v RestoreConnection /t REG_DWORD /d 0x00000001 /fRestart required.
-
Troubleshoot firewall and services: temporarily disable the firewall with
netsh advfirewall set allprofiles state off(remember to re-enable it afterward) y verifique que servicios como "Workstation" y "Server" are running usingservices.msc. -
Implement advanced scripts: For automated environments, use a PowerShell script to monitor and repair connectivity:
powershell if (-not (Test-Path \servidorcarpeta)) { Write-Host "Error: Ruta no encontrada" Restart-Service LanmanWorkstation }Try solutions like updating network drivers or reinstalling them protocolo SMBThe SMB Protocol (Server Message Block) is a network protocol used to share files, printers and other resources on a local network. Originally developed by IBM in the years 80, It has evolved over time and is mainly used in Windows operating systems.. SMB enables efficient communication between devices, facilitating access and management of data in network environments. Your implementation may vary, existing.... More.
Best practices include documenting changes, testing in lab environments and monitoring Event Viewer logs for recurring patterns.
Related Errors
Error 0x80070035 is part of the Win32 error family (0x80070000 to 0x8007FFFF), which cover base system issues. Then, una tabla con errores relacionados y sus conexiones:
| Código de Error | Description | Connection with 0x80070035 |
|---|---|---|
| 0x80070002The error "0x80070002" is a common problem in Windows systems, usually related to failed updates or installations. This code indicates that the system cannot find certain files needed to complete the operation, often due to insufficient permissions, corrupt files, or connection issues. Para solucionarlo, it is recommended to check administrator permissions, ejecutar el solucionador de problemas de Windows Update y asegurarse de que el disco duro tenga... | "El sistema no puede encontrar el archivo especificado" (ERROR_FILE_NOT_FOUND) | Indicates similar path resolution failures, often preceding 0x80070035 in network issues. |
| 0x80070005El error **0x80070005** es un problema común en sistemas Windows, generalmente relacionado con permisos insuficientes o problemas de acceso a archivos. Este código de error puede aparecer al intentar actualizar el sistema, instalar software o realizar copias de seguridad. Las causas incluyen configuraciones de seguridad restrictivas o corrupción de datos. Para solucionarlo, se recomienda ejecutar el programa como administrador, verificar los permisos de las carpetas involucradas o utilizar herramientas de... | "Acceso denegado" (ERROR_ACCESS_DENIED) | Related when permissions block access, exacerbating network problems like in 0x80070035. |
| 0x800704CF | "La red está desconectada" (ERROR_NETWORK_UNREACHABLE) | Similar en causas de conectividad, pero específico de rutas inalcanzables, a diferencia del no encontrado en 0x80070035. |
| 0x80070043El código de error 0x80070043 en Windows indica problemas al acceder a recursos de red, como archivos compartidos. Suele surgir por fallos en la conexión, permisos insuficientes o rutas incorrectas. To fix it, verifica la red, asegúrate de que los permisos estén configurados correctamente y reinicia el servicio de red. Este error es común en entornos compartidos. (58 palabras)... | "La red no es accesible" (ERROR_BAD_NET_NAME) | Código hermano que se activa por nombres de red inválidos, complementando las causas de 0x80070035. |
Estos errores comparten patrones en la familia 0x8007xxxx, que se centra en errores del sistema Win32, facilitando un diagnóstico cruzado.
Historical Context
The error 0x80070035 has its roots in early versions of Windows, como Windows XP y Windows Server 2003, where it was introduced as part of the Win32 codes to handle network errors. In Windows 7, this error was common in basic networked work environments, pero su frecuencia aumentó con Windows 8 Y 10 debido a la transición a protocolos más seguros como SMBv2 y v3, que introdujeron dependencias adicionales en la autenticación y el cifrado.
In Windows 10, Microsoft fortaleció la gestión de errores con actualizaciones como las de octubre de 2018, que mejoraron el Network diagnosisNetwork diagnosis is an essential process for identifying and resolving problems in communication networks.. This analysis involves the evaluation of the connectivity, the performance and security of interconnected devices. There are various tools and techniques, like ping, traceroute and packet analysis, that help detect failures and bottlenecks. Performing an effective diagnosis allows you to optimize the operation of the network, improve the.... y redujeron incidencias mediante herramientas como el Asistente de Red. For Windows 11, launched in 2021, el error persiste pero se integra con características modernas como Wi-Fi 6 y redes mesh, donde parches como KB5006674 abordan vulnerabilidades SMB que podrían desencadenar 0x80070035. Diferencias clave incluyen una mayor automatización en Windows 11, con el servicio "Network Troubleshooter" ofreciendo soluciones proactivas, en contraste con Windows 7, donde la resolución manual era predominante.
A lo largo de las versiones, Microsoft has released patches and updates, such as in Windows UpdateWindows updates are essential components for the maintenance and security of Microsoft operating systems. Through Windows Update, users receive performance improvements, security patches and new features. It is recommended that users keep this option activated to ensure protection against vulnerabilities and optimize system operation. Updates are downloaded and installed automatically, although it is also possible to configure them manually.., to mitigate underlying causes, reflecting the evolution of security and connectivity in the cloud era.
References and Further Reading
- Microsoft Learn: System Error Codes – Official resource to understand the structure and causes of HRESULT codes.
- Windows SDK documentation – Includes details on affected APIs and files like winerror.h.
- Microsoft TechNet: Network Issues in Windows – Forums and guides for administrators on resolving errors like 0x80070035.
- Microsoft Support articles – Specific guides for Windows 10 Y 11 on network errors.
- PowerShell Documentation – For scripts and commands related to networking.
These resources provide a solid foundation for deeper research, ensuring that advanced users maintain up-to-date practices.



