Hi,
People still run into duplicate machine SIDs on Windows setups. Thing is, if those machines came from a Dell factory image or some deployment tool like MDT or SCCM, they might not have gone through sysprep. That means they could end up sharing the same SID, even without you cloning anything yourself. OEM stuff often skips the full generalization step, you know. And if it was a recovery USB or one of Dell's custom tools, it might just quietly reuse that SID without telling you.
To check for sure, hop on PowerShell for each machine. Run this command to grab the machine SID. Get-WmiObject Win32_UserAccount | Where-Object { $_.Name -eq 'Administrator' } | Select Name, SID. Then look at the SID prefix, the part before those last four digits. If they line up the same across machines, yeah, they are sharing the base SID. That is probably your problem right there.
Another common headache shows up with credential conflicts in Windows Credential Manager. Windows likes to hang onto old or wrong credentials for network shares sometimes. Even if your username and password are spot on, it can block access anyway.
The fix is pretty straightforward, clear out those saved credentials. On the PC giving you trouble, fire up Credential Manager through Control Panel, under User Accounts. Peek at the Windows Credentials section for anything tied to the target PC, like \DELL-PC. Delete those entries. Give the share another try after that.