Welcome to Microsoft Q&A!
Thank you for providing a detailed description of the issue and for sharing the troubleshooting you've already performed.
Based on the symptoms you've described, Error 0x80070043 ("The network name cannot be found") typically indicates that Windows is unable to resolve or access a network resource. In most cases, this points to a network discovery, name resolution, SMB connectivity, or share accessibility issue rather than a problem that requires a clean installation or an in-place upgrade.
I would recommend the following troubleshooting steps:
1. Determine whether the issue is related to name resolution or network browsing
Open File Explorer and test access using both the computer name and IP address:
\\ComputerName
And
\\IP_Address
If access works by IP address but not by computer name, the issue is likely related to DNS or NetBIOS name resolution rather than the Windows installation itself.
2. Verify that Network Discovery and File Sharing are enabled
Navigate to: Settings > Network & Internet > Advanced sharing settings
Ensure the following options are enabled:
- Network Discovery
- File and Printer Sharing
These settings are required for proper network browsing and device discovery.
3. Confirm the required discovery services are running
Open Services (services.msc) and verify that the following services are running:
- Function Discovery Provider Host
- Function Discovery Resource Publication
- SSDP Discovery
- UPnP Device Host
Set each service to Automatic startup and restart the computer after making any changes.
4. Test SMB access directly
Run the following command from an elevated Command Prompt:
net use * \\ServerName\ShareName
This can help determine whether the issue is limited to the Network view in File Explorer or if there is an underlying SMB connectivity problem.
5. Run system integrity checks
Open an elevated Command Prompt and run:
sfc /scannow
followed by:
DISM /Online /Cleanup-Image /RestoreHealth
These commands can repair corrupted system files that may affect networking components.
6. Review SMB-related configuration
Recent versions of Windows 11 include stricter SMB security requirements. If you're connecting to an older NAS device, printer, or other network appliance, verify that it supports current SMB security standards and authentication requirements
If direct UNC paths (for example, \\ServerName\Share) work successfully but the Network folder continues to display the error, the issue is often related to Windows Network Discovery enumeration rather than actual network connectivity. In that scenario, using direct UNC paths or mapped network drives can serve as a practical workaround while further investigating the discovery component.
Based on the information you've provided, I would not recommend a clean installation at this stage. Error 0x80070043 is commonly resolved by addressing network discovery, name resolution, or SMB-related configuration issues, and a rebuild of Windows is rarely necessary as an initial troubleshooting step.
References: Advanced Troubleshooting Server Message Block (SMB) | Microsoft Learn
Guidance for troubleshooting SMB - Windows Server | Microsoft Learn
If you find this information helpful, please click Accept Answer.
Thank you for using Microsoft Q&A.