New PC built with Win 11 24H2. Won't reconnect WD MyCloud network drive at login.

David Morell 0 Reputation points
2025-02-07T19:16:26.9233333+00:00

New PC built by CPU Solutions in Madison WI in January 2025. Win 11 Home Ver 24H2. I finally managed to map my Western Digital MyCloud network drive manually by using "different account credentials". The credentials needed are the MyCloud drive "Name" and "Password". The drive is connected ethernet to my router. However, on restart, the new Win 11 PC will not reconnect. The "Reconnect at Login" option is set. I never had this problem on my Win 10 PC (too old to upgrade to Win 11), and do not have this problem on my Dell Laptop, which I upgraded a few months ago from Win 10 to Win 11.

Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,820 questions
{count} votes

5 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. 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

  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

  4. Ibrahim Tokar 80 Reputation points
    2025-02-07T21:42:00.76+00:00

    It sounds like Windows 11 isn’t properly saving the credentials for your mapped Western Digital MyCloud drive, causing it to fail reconnecting on startup. Since your Dell laptop (upgraded to Windows 11) does not have this issue, it’s likely a problem with how Windows 11 Home 24H2 handles stored credentials or network drive reconnections.

    Possible Fixes:

    1. Ensure Credentials Are Stored in Windows Credential Manager

    Since your drive requires a "Name" and "Password", ensure Windows saves them permanently:

    1. Open Control PanelCredential ManagerWindows Credentials.
    2. Click Add a Windows credential.
    3. Enter the following details:
      • Internet or network address: \[MyCloudDeviceName] (or its IP address, e.g., \192.168.1.100)
        • User name: Your MyCloud username (not your Windows username)
          • Password: Your MyCloud password
          1. Click OK and restart your PC.

    This forces Windows to always use these credentials when reconnecting the drive.


    1. Use a Persistent Drive Mapping Script

    If Windows still doesn’t reconnect, create a startup script to remap the drive automatically:

    1. Open Notepad and paste the following:

    batch

    KopyalaDüzenle

    @echo off

    net use Z: \[MyCloudDeviceName][SharedFolder] /user:[YourUsername] [YourPassword] /persistent:yes

    exit

    1. Replace [MyCloudDeviceName] with your MyCloud name or IP address.
    2. Replace [SharedFolder] with the actual folder name you are mapping.
    3. Replace [YourUsername] and [YourPassword] with your MyCloud credentials.
    4. Change Z: to your desired drive letter.
    5. Save the file as MapDrive.bat (Make sure it’s not saved as .txt).
    6. Place it in: C:\Users\YourUserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    7. Restart your PC and check if the drive reconnects. It sounds like Windows 11 isn’t properly saving the credentials for your mapped Western Digital MyCloud drive, causing it to fail reconnecting on startup. Since your Dell laptop (upgraded to Windows 11) does not have this issue, it’s likely a problem with how Windows 11 Home 24H2 handles stored credentials or network drive reconnections. Possible Fixes:
      1. Ensure Credentials Are Stored in Windows Credential Manager
      Since your drive requires a "Name" and "Password", ensure Windows saves them permanently:
      1. Open Control PanelCredential ManagerWindows Credentials.
      2. Click Add a Windows credential.
      3. Enter the following details:
        • Internet or network address: \[MyCloudDeviceName] (or its IP address, e.g., \192.168.1.100)
        • User name: Your MyCloud username (not your Windows username)
        • Password: Your MyCloud password
      4. Click OK and restart your PC.
      This forces Windows to always use these credentials when reconnecting the drive.
      1. Use a Persistent Drive Mapping Script
      If Windows still doesn’t reconnect, create a startup script to remap the drive automatically:
      1. Open Notepad and paste the following:
      batch KopyalaDüzenle @echo off net use Z: \[MyCloudDeviceName][SharedFolder] /user:[YourUsername] [YourPassword] /persistent:yes exit
      1. Replace [MyCloudDeviceName] with your MyCloud name or IP address.
      2. Replace [SharedFolder] with the actual folder name you are mapping.
      3. Replace [YourUsername] and [YourPassword] with your MyCloud credentials.
      4. Change Z: to your desired drive letter.
      5. Save the file as MapDrive.bat (Make sure it’s not saved as .txt).
      6. Place it in: C:\Users\YourUserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
      7. Restart your PC and check if the drive reconnects.
    0 comments No comments

  5. Zunhui Han 3,810 Reputation points Microsoft External Staff
    2025-02-12T09:42:21.89+00:00

    Hello,

    Thank you for posting in Q&A forum.

    You can try to modify the registry to see if it can solve the problem:

    "Win+R" to open Run, type: regedit to open the Registry Editor,

    Locate: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\SharedAccess

    Right-click the mouse in the blank space and create a new "DWORD (32-bit) value (D)",

    The name is "EnableRebootPersistConnection" and change the numerical data to 1.

    Image

    Note If you modify the registry incorrectly, you can cause serious problems. Therefore, follow these steps carefully. For additional protection, back up the registry before you modify it. For more information about how to back up and restore the registry, see How to back up and restore the registry in Windows.

    I hope the information above is helpful.

    Best regards

    Zunhui

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

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