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:
- Run PowerShell (Admin): Set-SmbClientConfiguration -EnableInsecureGuestLogons $true -Force Set-SmbClientConfiguration -RequireSecuritySignature $false -Force Set-SmbServerConfiguration -RequireSecuritySignature $false -Force
- 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.