0X80300105

PLA_E_CONFLICT_INCL_EXCL_API (0x80300105) Fix

This error hits when Data Collector Sets mix include and exclude API filters on the same path. The fix: split them into separate collector sets.

You hit this error setting up a Data Collector Set

I know the feeling — you're configuring a Data Collector Set in Windows Performance Monitor, you've carefully chosen which API calls to include and exclude, and then Windows throws 0x80300105 at you with that cryptic "conflict" message. The fix is straightforward once you know what's happening.

Quick fix: split your include and exclude filters

The error means you've added both an Include and an Exclude filter to the same API tracing path in a single Data Collector Set. Windows Performance Monitor simply won't accept that — it sees a logical contradiction and refuses to start the trace.

Here's what you do:

  1. Open Performance Monitor (perfmon.msc).
  2. Navigate to Data Collector SetsUser Defined.
  3. Find the failing Data Collector Set, right-click it, and choose Properties.
  4. Go to the Performance Counter tab or Trace tab (whichever uses API tracing).
  5. Remove either the Include or the Exclude filter from that path. You can't have both on the same path inside one collector set.
  6. Click OK and start the set again. It should run.

If you need both include and exclude logic, create two separate Data Collector Sets — one for includes, one for excludes. Then group them under a parent Data Collector Set if you want them to run together.

Why this happens — the real reason

What's actually happening here is that Windows Performance Monitor's trace engine uses a single filter rule per collector for each API tracing path. The Include and Exclude lists are meant to be mutually exclusive within that rule — they're parsed as a single filter expression, not two independent ones. When you provide both, the parser detects the contradiction at initialization and returns PLA_E_CONFLICT_INCL_EXCL_API to tell you it can't resolve which APIs to trace.

The reason step 3 works (splitting across multiple collector sets) is that each collector set gets its own independent filter context. The trace engine then merges their output at a higher level, avoiding the parser conflict entirely.

Less common variations of the same issue

You might see this error in a few other places:

  • Using logman.exe from the command line — If you pass both -incl and -excl flags for the same provider in a single logman create trace command, you'll get the same error. Drop one flag, or use separate commands.
  • WMI-based scripts — Scripts that set IncludeAPIs and ExcludeAPIs on the same TraceDataProvider object in PowerShell or VBScript will fail. Only set one property, then create a second instance for the other filter.
  • Importing a Data Collector Set XML — If the XML has both <IncludeAPIs> and <ExcludeAPIs> inside the same <TraceDataProvider> element, the import fails with this error. Edit the XML to split them into separate provider definitions.

Prevention — keep your filters clean

To avoid this in the future:

  • Design each Data Collector Set with a single-purpose filter. If you're tracing all APIs except a few, use Exclude only. If you're tracing only specific APIs, use Include only.
  • When you need complex logic (e.g., include A and B but exclude C), use nested Data Collector Sets — each child collector has a single filter, and the parent runs them together.
  • Test your logman commands interactively before scripting them. The error message is unambiguous once you've seen it once.
  • If you're using WMI or PowerShell, validate that you're not setting both properties on the same object. The API surface is unforgiving here — it expects exactly one filter per provider instance.

That's it. Split your filters, and the error disappears. No registry hacks, no service restarts, no reinstalling Windows. Just cleaner trace design.

Related Errors in Windows Errors
0X80280800 TPM_E_RETRY (0X80280800) Fix: When TPM Says 'Try Again' 0X000010E0 Fix ERROR_REQUEST_REFUSED (0x10E0) – Operator Refused Stop Windows Store Errors Without Wasting Time 0XC000001F STATUS_INVALID_VIEW_SIZE (0XC000001F) Fix: 3 Tiers

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.