Jump to content

Recommended Posts

Posted

Hi

 

I am recently getting a few unable to logon becuase of trust issues on Windows 7 machines, re-joining them to the domain works ok.

 

Running DCDiag on our 2 DCs shows:

 

Starting test: NCSecDesc

Error NT AUTHORITY\ENTERPRISE DOMAIN CONTROLLERS doesn't have Replicating Directory Changes In Filtered Set access rights for the naming context: DC=ForestDnsZones,DC=DOMAIN,DC=LOCAL

 

Error NT AUTHORITY\ENTERPRISE DOMAIN CONTROLLERS doesn't have Replicating Directory Changes In Filtered Set access rights for the naming context: DC=DomainDnsZones,DC=DOMAIN,DC=LOCAL

 

Is this related, or is it something wrong with the image? The image was SYSPREP'd before deploying.

 

Thanks in advance

Posted

Don't think that's part of the problem, it seems to mean you haven't extended the AD schema for Read Only DC's: Dcdiag fails for NCSecDesc test on Windows 2008 Domain Controllers

 

I occaisionally get the odd Windows Thin PC dropping off the network with trust issues, I normally put it down to the way I butchered the shell to simplify login. I do occaisionally think about it, but then take a look at the PC's I normally have to rejoin and it's always the same few, some have been running for over a year and a half without issue, others it's every 90 days or so.

Posted (edited)

does the workstation refuse to logon with

 

The trust relationship between this workstation and the primary domain failed

 

if so disabling startup repair will probably cure or at worst severly reduce its chance of happening

 

this as a startup script is what i use

 

VER | findstr /l "6.1" > nul

IF %ERRORLEVEL% EQU 0 goto _win7

goto end

:_win7

if exist c:\startuprepairoff.txt goto end

bcdedit /set {default} bootstatuspolicy ignoreallfailures

copy "\\domain.local\NETLOGON\win7\disablestartuprepair.bat" "c:\startuprepairoff.txt" /y

 

:end

Edited by sted
Posted
does the workstation refuse to logon with

 

The trust relationship between this workstation and the primary domain failed

 

if so disabling startup repair will probably cure or at worst severly reduce its chance of happening

 

this as a startup script is what i use

 

VER | findstr /l "6.1" > nul

IF %ERRORLEVEL% EQU 0 goto _win7

goto end

:_win7

if exist c:\startuprepairoff.txt goto end

bcdedit /set {default} bootstatuspolicy ignoreallfailures

copy "\\domain.local\NETLOGON\win7\disablestartuprepair.bat" "c:\startuprepairoff.txt" /y

 

:end

 

 

Thanks

 

Can you explain what it does exactly and what is in the \\domain.local\NETLOGON\win7\disablestartuprepair .bat batch file (and you know you have a space between repair and .bat)

Posted
Thanks

 

Can you explain what it does exactly and what is in the \\domain.local\NETLOGON\win7\disablestartuprepair .bat batch file (and you know you have a space between repair and .bat)

the disablestartuprepair.bat is what ive called the batch file i copy it to the local machine as an error check.

 

what ot does os stops startup repair running because the pc wants to. it can still be run manually but wont autorun if the pc isnt shutdown right

Posted
the disablestartuprepair.bat is what ive called the batch file i copy it to the local machine as an error check.

 

what ot does os stops startup repair running because the pc wants to. it can still be run manually but wont autorun if the pc isnt shutdown right

 

Thanks :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...