Somehow you have an old Windows domain with a new one and you need to map network shares using Windows 2012 R2 preferences?
You will not be able to do this if there’s a need for multiple shares from the same server according to Microsoft Security Policy.
To bypass this you will need to do the following:
1. Create an alias of the server in the DNS server record.
p.some.domain.com CNAME fileserver.some.domain.com q.some.domain.com CNAME fileserver.some.domain.com
2. But that’s not all, the Server recognizes it’s an alias (it is not listening to alias), and you still cannot connect shares.
3. You will need to change the registry value on the fileserver and reb0ot it:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\LanmanServer\Parameters Value: DisableStrictNameChecking Type: REG_DWORD Radix: Decimal Value: 1
4. Optionally there could be a situation where you need to set up the SPN for the Alias:
setspn -a host/alias fileserver setspn -a host/alias.some.domain.com fileserver