issues with my local network

Vic Chaffey 0 Reputation points
2026-07-30T14:16:26.5333333+00:00

I have a wd mycloud home which will run if i use the ip address but will not run if i just click the icon in network explorer. I have spent many months trying to fix this. It seems The issue lies within windows can you help please

Windows for business | Windows Client for IT Pros | Networking | Network connectivity and file sharing
0 comments No comments

3 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. Abhishek U 85 Reputation points
    2026-07-30T17:24:18.5933333+00:00

    Hello @Vic Chaffey

    WD MyCloud Home is accessible via IP (e.g., \192.168.x.x) but does not appear under Network Explorer in Windows. This occurs because Windows disables SMB guest access and SMB1 by default, which older NAS devices rely on.
    Steps to resolve:

    1. Run PowerShell (Admin): Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force Set-SmbClientConfiguration -RequireSecuritySignature $false -Force Set-SmbServerConfiguration -RequireSecuritySignature $false -Force
    2. Run Command Prompt (Admin): reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters" /v AllowInsecureGuestAuth /t REG_DWORD /d 1 /f reg add "HKLM\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters" /v AllowGuestAccess /t REG_DWORD /d 1 /f reg add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v RestrictAnonymous /t REG_DWORD /d 0 /f Restart your PC or restart the LanmanWorkstation service. For reliability, map the drive manually: <MyCloud_IP>\Public.

    Note: These changes reduce SMB security. Use only on a trusted home LAN and disable them if connecting to public networks.

    If this solution helps, please upvote or mark it as accepted so others can benefit. If the issue persists, reply with details and we can troubleshoot further.

    Was this answer helpful?

    0 comments No comments

  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.