Skip to content
LogoTechnipages
LogoTechnipages
  • Topics
        • Android
        • Browsers
        • Gaming
        • Hardware
        • Internet
        • iPhone
        • Linux
        • macOS
        • Office
        • Reviews
        • Software
        • Windows
        • Definitions
        • All Recent Posts
  • Product Reviews
  • About

Active Directory: Fix Replication Error 8203

Mitch BartlettDecember 13, 2018 Comments (0)
Active Directory logo

We had quite an issue with replication in our Active Director environment this past week. We suddenly were hit with tons of events in the event log with event ID 1694 where it said:

Replication Error 8203 “The attribute syntax specified to the directory service is invalid.”

This error means that there is an attribute set on an object somehwere in Active Directory is not valid. That could mean that there is a strange character somehwere, or an attribute that requires a Distinguised Name being set with a string.

To fix this problem, we pulled more data from those events. Each event tells you the attribue that is problematic. In our case, the log it was the “manager” attribute.

While the log didn’t specify a username with the issue, it did specify a GUID. we can use the following PowerShell command to find the user object.

Get-ADUser -Identity {GUID}

Once you find the user, open the user in Active Directory, and correct the attribute.

In our case, the “manager” field had a strange blank character. We simply clicked “Clear” to clear it out, and the field then said “<not set>” as it should.

Once every one of the problematic accounts were updated, replication resumed as normal.

FAQ

How do I find blank characters set in Active Directory attributes?

We ran the following PowerShell script on each of our Domain Controllers to reveal which objects had a black character in the attribute.

Get-ADObject -Server $_.Name -LDAPfilter '(manager=\20)'

You can also query all domain controllers.

Categories: Windows

Author Mitch Bartlett

Through my career that spans over 20 years I have become an expert in Microsoft Systems Administration, Android, and macOS. I started this site as a technical guide for myself and it has grown into what I hope is a useful knowledgebase for everyone.

You Might Also Like

  • How to Set Reddit Wallpapers as Background on PC

    How to Set Reddit Wallpapers as Background on PC and Android Automatically

    MonaAndroid
  • windows-system-registry-file-missing-or-contains-errors

    Fix: System Registry File Is Missing or Contains Errors

    Madalina DinitaWindows
  • roll-back-from-windows-11-to-windows-10

    How to Downgrade from Windows 11 to Windows 10

    Madalina DinitaWindows
  • How to Fix Windows Printer Error 0x0000011b

    How to Fix Windows Printer Error 0x0000011b

    Madalina DinitaWindows

Leave a Reply

Your email address will not be published. Required fields are marked *

  • windows 11 color printing issues

    Fixing the Windows 11 Color Printing Error

  • improve privacy windows 11

    6 Tips for Improving Your Privacy in Windows 11 

  • missing boot manager in bios

    Step‑by‑Step Fix for Missing Windows Boot Manager in BIOS or UEFI

  • power query sharepoint folder error

    Power Query Not Detecting New Files in SharePoint – How to Fix

  • android device can't connect to microsoft 365

    What to Do When Your Android Device Can’t Connect to Microsoft 365

profile pic

The Experts Behind Technipages

My name is Mitch Bartlett. I've been working in technology for over 20 years in a wide range of tech jobs from Tech Support to Software Testing. I started this site as a technical guide for myself and it has grown into what I hope is a useful reference for all.

Learn More

technipages logo white
linkedin icon

Technipages is part of Guiding Tech Media, a leading digital media publisher focused on helping people figure out technology. Learn more about our mission and team here.

© 2026 Guiding Tech Media All Rights Reserved

  • About Us
  • Contact
  • Terms of Use
  • Privacy Policy

© 2026 Guiding Tech Media All Rights Reserved

Information from your device can be used to personalize your ad experience.
Do not sell my personal information.

Last Updated on December 13, 2018 by Mitch Bartlett