Hello Murray, thank you for posting in the Microsoft Q&A community.
Based on your description, the new Windows 11 25H2 laptops are rejecting the Workgroup credentials and throwing a "domain isn't available" error. This is a known behavior on newer Windows 11 devices, especially those using Microsoft Accounts and Windows Hello (PIN sign-in). When you use a PIN, Windows prioritizes modern cloud or domain authentication protocols. When it tries to connect to a traditional local Workgroup share, it attempts to pass a domain token instead of the required local NTLM authentication. Your older laptops likely still work because they were upgraded from Windows 10 and retained their legacy local credential behavior.
To directly answer the questions you asked in the comments regarding the command prompt:
The * (asterisk) at the end of the command is required. It tells Windows to securely prompt you for the password on the next line so your password isn't visible on the screen. Do not replace the asterisk with your password.
For the /user: section, you need to input the exact Computer Name of the server, a backslash, and then the username of the account on the server. For example, if your server's computer name is OFFICE-SERVER and the username is Admin, the command would look exactly like this:
net use Z: \\OFFICE-SERVER\Sharename /user:OFFICE-SERVER\Admin *
Because the Windows 11 File Explorer mapping wizard often struggles with Workgroup authentication when a PIN is involved, the most reliable standard solution is to pre-load the credentials directly into the Windows Credential Manager. This bypasses the mapping wizard's authentication entirely. Please try the following steps on one of the new laptops:
- Open the Start menu, type Credential Manager, and press Enter.
- Click on Windows Credentials.
- Click Add a Windows credential.
- In the Internet or network address box, type the exact computer name of the server (e.g., \\PCSERVER1). You can also try using the server's IP address (e.g., 192.168.1.50) if the name fails.
- In the User name box, type it in the format of ServerName\UserName (e.g., PCSERVER1\Murray).
- In the Password box, type the password for that specific user account on the server.
- Click OK to save.
- Now, open File Explorer and attempt to Map the Network Drive again. Do not check the box that says "Connect using different credentials"—let Windows automatically pull the credentials you just saved in the Credential Manager.
If that does not work, we can force the system to accept NTLM authentication through the Local Group Policy. Sometimes new Windows 11 25H2 deployments have stricter default security policies that restrict local network mapping. Press the Windows Key + R, type secpol.msc, and press Enter. Navigate to Local Policies > Security Options. Find the policy named Network security: LAN Manager authentication level, double-click it, and set it to Send NTLMv2 response only. Refuse LM & NTLM. Apply the changes and restart the laptop.
To help me isolate the issue further if the above steps do not work, please run the net use command in a Command Prompt and reply with the exact output or System Error code. This will tell us if the failure is at the network level or purely an authentication block.
I will follow up on this thread to ensure your issue is resolved. If the guidance provided helped you navigate to this solution, please consider clicking 'Accept answer'. This officially marks the thread as answered and greatly helps other community members who are searching for a solution to this exact same problem.*
Official Microsoft Documentation References: