Starryeyed173
MIS
I had a network change over the weekend, adding two new servers (2008 R2) and making them DCs and demoting the old DC (2003 R2). The old server still contains network drives that everyone uses. There is a login script on the DC that looks like so:
@echo off
net use /delete * /y
net use Z: \\servername\shared
net use Y: \\servername\usershares
net use X: \\servername\%username%
net time \\servername /set /yes
Been using this successfully for years. Never asks for a username or password before. Out of 19 workstations, most of them are still working fine after the dust settled. There were some DNS issues, but they were repaired. Meanwhile there are 3 workstations that now ask for the domain admin user and domain password every time they start their systems. Just those 3. Everything on the 2003 server looks the same in terms of permissions as everyone else. I don't really wish to add the username/password to the script if I don't have to. The one common thread is these are all Windows 7 and one is a 64-bit. But, I have other workstations working just fine that are Windows 7 and 64-bit. All of the XP workstations have no problems. What is going on?
@echo off
net use /delete * /y
net use Z: \\servername\shared
net use Y: \\servername\usershares
net use X: \\servername\%username%
net time \\servername /set /yes
Been using this successfully for years. Never asks for a username or password before. Out of 19 workstations, most of them are still working fine after the dust settled. There were some DNS issues, but they were repaired. Meanwhile there are 3 workstations that now ask for the domain admin user and domain password every time they start their systems. Just those 3. Everything on the 2003 server looks the same in terms of permissions as everyone else. I don't really wish to add the username/password to the script if I don't have to. The one common thread is these are all Windows 7 and one is a 64-bit. But, I have other workstations working just fine that are Windows 7 and 64-bit. All of the XP workstations have no problems. What is going on?