Hi
I have Windows Server 2003 Domain Controller and have move the fileshare files to a new Windows Server 2008 R2
The network has both Windows XP and Windows 7 clients. It's only Windows 7 they losing the contact, in network location - the appear CSC-CACHE.
I have done a script ...
*********************************************************************************************************************
@ Echo Off
rem change the registry ...
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\NetCache /v FormatDatabase /t REG_DWORD /d 1 /f
REG ADD HKLM\SYSTEM\CurrentControlSet\services\CSC\Parameters /v FormatDatabase /t REG_DWORD /d 1
Pause
Rem take ownership
cd %systemroot%
takeown /f csc /r /a /d y
icacls csc /grant Everyone:(F) /t /l /q
Rem Delete the old offline files
rmdir /s /q "C:\windows\CSC"
******************************************************************************************************************************************************************************************
The event log (win2003) appear NTFRS eventid 13516
The File Replication Service is no longer preventing the computer (windows 2003) from becoming a domain controller. The system volume has been successfully initialized and the Netlogon service has been notified that the system volume is now ready to be shared as SYSVOL.
Something I have missed ? I guess is somtehing about Sync Center ?
Grateful for answer !!