Hello Karel,
Thank you for posting in Microsoft Community forum.
This issue is likely caused by NetBIOS name conflicts or network resolution problems. The error message indicates that a computer (192.168.1.179) is rejecting the name registration from another computer (192.168.1.4). Here's a concise troubleshooting guide:
- NetBIOS Name Conflict: Check for duplicate NetBIOS names using nbtstat -n. If duplicates are found, rename the conflicting computer.
- WINS Server Issue: If you're using WINS, restart the WINS service and clear the WINS database with netsh interface ip delete arpcache.
- LLMNR Conflict: Disable LLMNR on affected computers using:
- Set-NetIPInterface -InterfaceAlias "Ethernet" -NlMnrDisabled $true
- IP Address Conflict: Check for IP conflicts with arp -a. Ensure no duplicate IPs are assigned.
- DNS/DHCP Issues: Verify DNS settings and ensure the DHCP server is not assigning duplicate IPs.
- Reboot Machines: Restart affected PCs to clear network configuration issues.
- Update Windows: Ensure all machines are up-to-date, especially network-related updates.
- Reset TCP/IP Stack: Run netsh int ip reset to reset the network settings.
These steps should help resolve the problem. If it persists, deeper network configuration checks may be necessary.