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:
- Ensure Credentials Are Stored in Windows Credential Manager
Since your drive requires a "Name" and "Password", ensure Windows saves them permanently:
- Open Control Panel → Credential Manager → Windows Credentials.
- Click Add a Windows credential.
- 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
- Click OK and restart your PC.
- User name: Your MyCloud username (not your Windows username)
- Internet or network address: \[MyCloudDeviceName] (or its IP address, e.g., \192.168.1.100)
This forces Windows to always use these credentials when reconnecting the drive.
- Use a Persistent Drive Mapping Script
If Windows still doesn’t reconnect, create a startup script to remap the drive automatically:
- Open Notepad and paste the following:
batch
KopyalaDüzenle
@echo off
net use Z: \[MyCloudDeviceName][SharedFolder] /user:[YourUsername] [YourPassword] /persistent:yes
exit
- Replace [MyCloudDeviceName] with your MyCloud name or IP address.
- Replace [SharedFolder] with the actual folder name you are mapping.
- Replace [YourUsername] and [YourPassword] with your MyCloud credentials.
- Change Z: to your desired drive letter.
- Save the file as MapDrive.bat (Make sure it’s not saved as .txt).
- Place it in: C:\Users\YourUserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
- 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:
- Ensure Credentials Are Stored in Windows Credential Manager
- Open Control Panel → Credential Manager → Windows Credentials.
- Click Add a Windows credential.
- 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
- Click OK and restart your PC.
- Use a Persistent Drive Mapping Script
- Open Notepad and paste the following:
- Replace [MyCloudDeviceName] with your MyCloud name or IP address.
- Replace [SharedFolder] with the actual folder name you are mapping.
- Replace [YourUsername] and [YourPassword] with your MyCloud credentials.
- Change Z: to your desired drive letter.
- Save the file as MapDrive.bat (Make sure it’s not saved as .txt).
- Place it in: C:\Users\YourUserName\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
- Restart your PC and check if the drive reconnects.