adprep: Add the LDF data needed to upgrade to 2012R2 schema
authorGarming Sam <garming@catalyst.net.nz>
Mon, 2 Oct 2017 21:01:30 +0000 (10:01 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 14 Dec 2017 07:20:15 +0000 (08:20 +0100)
This patch adds the LDF files corresponding to the changes that the
Windows Adprep.exe tool makes when upgrading a AD schema to Windows
2012R2.

This is based on information Microsoft has made public on github
(Schema-Updates.md - see the README.txt for more details).

The LDF files 48-56 are for upgrading to Windows Server 2012, and 57-69
are for Windows Server 2012 R2.

Unfortunately, the raw LDF information from Microsoft wasn't enough to
get the schema working. The .diff files contain changes we needed to
make on top of the raw LDF content from Microsoft.

The basic steps to regenerate the .LDF files are documented in the
README.txt file. The files used to generate the .LDF files are in the
WindowsServerDocs/ sub-directory. (The .LDF generation is done at runtime
during provision).

Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Signed-off-by: Tim Beale <timbeale@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/ms_markdown.py [new file with mode: 0644]
source4/setup/adprep/README.txt [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/LICENSE [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/LICENSE-CODE [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/Sch49.ldf.diff [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/Sch50.ldf.diff [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/Sch51.ldf.diff [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/Sch57.ldf.diff [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/Sch59.ldf.diff [new file with mode: 0644]
source4/setup/adprep/WindowsServerDocs/Schema-Updates.md [new file with mode: 0644]
source4/setup/wscript_build

diff --git a/python/samba/ms_markdown.py b/python/samba/ms_markdown.py
new file mode 100644 (file)
index 0000000..c695f8b
--- /dev/null
@@ -0,0 +1,71 @@
+# Create schema.ldif from Github markdown
+#
+# Each LDF section in the markdown file then gets written to a corresponding
+# .LDF output file.
+#
+# Copyright (C) Andrew Bartlett 2017
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+"""Generate LDIF from Github documentation."""
+
+import re
+import os
+import markdown
+import xml.etree.ElementTree as ET
+
+def innertext(tag):
+    return (tag.text or '') + \
+            ''.join(innertext(e) for e in tag) + \
+            (tag.tail or '')
+
+def read_ms_markdown(in_file, out_folder):
+    """Read Github documentation-derived schema files."""
+
+    with open(in_file) as update_file:
+        # Remove any comments from the raw LDF files
+        html = markdown.markdown(re.sub(r'(?m)^# .*\n?', '', update_file.read()),
+                                 output_format='xhtml')
+
+    tree = ET.fromstring('<root>' + html + '</root>')
+
+    ldf = None
+    try:
+        for node in tree:
+            if node.tag == 'h3':
+                if ldf is not None:
+                    ldf.close()
+
+                out_path = os.path.join(out_folder, innertext(node).strip())
+                ldf = open(out_path, 'w')
+            elif node.tag == 'p' and ldf is not None:
+                ldf.write(innertext(node).replace('```', '') + '\n')
+    finally:
+        if ldf is not None:
+            ldf.close()
+
+if __name__ == '__main__':
+    import sys
+
+    out_folder = ''
+
+    if len(sys.argv) == 0:
+        print >>sys.stderr, "Usage: %s <Schema-Update.md> [<output folder>]" % (sys.argv[0])
+        sys.exit(1)
+
+    in_file = sys.argv[1]
+    if len(sys.argv) > 2:
+        out_folder = sys.argv[2]
+
+    read_ms_markdown(in_file, out_folder)
diff --git a/source4/setup/adprep/README.txt b/source4/setup/adprep/README.txt
new file mode 100644 (file)
index 0000000..069b015
--- /dev/null
@@ -0,0 +1,23 @@
+The Schema updates in this directory were based on information retrieved
+from Microsoft's Github:
+
+file: WindowsServerDocs/identity/ad-ds/deploy/Schema-Updates.md
+project: https://github.com/MicrosoftDocs/windowsserverdocs/
+
+./WindowsServerDocs/Schema-Updates.md is the version of the file we used (last updated
+Jun 1, 2017, commit SHA f79755b75d2810b8a4).
+
+License files (LICENSE and LICENSE-CODE) have also been included in the ./gen
+directory for reference.
+
+The ms_markdown.py script was then used to produce the .ldf files.
+
+However, this schema didn't work. The ./gen/*.diff files are the changes
+we made on top of this to get the schema working on Samba. If you are
+re-generating the .ldf files, to apply the patches, use:
+
+for p in `ls gen/*.diff` ; do patch -p 1 < $p ; done
+
+All this is handled at runtime in the provision code, so that we do
+not store patched generated files in git (an alternative would have
+been to patch the original markdown).
diff --git a/source4/setup/adprep/WindowsServerDocs/LICENSE b/source4/setup/adprep/WindowsServerDocs/LICENSE
new file mode 100644 (file)
index 0000000..a2c95fc
--- /dev/null
@@ -0,0 +1,395 @@
+Attribution 4.0 International
+
+=======================================================================
+
+Creative Commons Corporation ("Creative Commons") is not a law firm and
+does not provide legal services or legal advice. Distribution of
+Creative Commons public licenses does not create a lawyer-client or
+other relationship. Creative Commons makes its licenses and related
+information available on an "as-is" basis. Creative Commons gives no
+warranties regarding its licenses, any material licensed under their
+terms and conditions, or any related information. Creative Commons
+disclaims all liability for damages resulting from their use to the
+fullest extent possible.
+
+Using Creative Commons Public Licenses
+
+Creative Commons public licenses provide a standard set of terms and
+conditions that creators and other rights holders may use to share
+original works of authorship and other material subject to copyright
+and certain other rights specified in the public license below. The
+following considerations are for informational purposes only, are not
+exhaustive, and do not form part of our licenses.
+
+     Considerations for licensors: Our public licenses are
+     intended for use by those authorized to give the public
+     permission to use material in ways otherwise restricted by
+     copyright and certain other rights. Our licenses are
+     irrevocable. Licensors should read and understand the terms
+     and conditions of the license they choose before applying it.
+     Licensors should also secure all rights necessary before
+     applying our licenses so that the public can reuse the
+     material as expected. Licensors should clearly mark any
+     material not subject to the license. This includes other CC-
+     licensed material, or material used under an exception or
+     limitation to copyright. More considerations for licensors:
+       wiki.creativecommons.org/Considerations_for_licensors
+
+     Considerations for the public: By using one of our public
+     licenses, a licensor grants the public permission to use the
+     licensed material under specified terms and conditions. If
+     the licensor's permission is not necessary for any reason--for
+     example, because of any applicable exception or limitation to
+     copyright--then that use is not regulated by the license. Our
+     licenses grant only permissions under copyright and certain
+     other rights that a licensor has authority to grant. Use of
+     the licensed material may still be restricted for other
+     reasons, including because others have copyright or other
+     rights in the material. A licensor may make special requests,
+     such as asking that all changes be marked or described.
+     Although not required by our licenses, you are encouraged to
+     respect those requests where reasonable. More_considerations
+     for the public: 
+       wiki.creativecommons.org/Considerations_for_licensees
+
+=======================================================================
+
+Creative Commons Attribution 4.0 International Public License
+
+By exercising the Licensed Rights (defined below), You accept and agree
+to be bound by the terms and conditions of this Creative Commons
+Attribution 4.0 International Public License ("Public License"). To the
+extent this Public License may be interpreted as a contract, You are
+granted the Licensed Rights in consideration of Your acceptance of
+these terms and conditions, and the Licensor grants You such rights in
+consideration of benefits the Licensor receives from making the
+Licensed Material available under these terms and conditions.
+
+
+Section 1 -- Definitions.
+
+  a. Adapted Material means material subject to Copyright and Similar
+     Rights that is derived from or based upon the Licensed Material
+     and in which the Licensed Material is translated, altered,
+     arranged, transformed, or otherwise modified in a manner requiring
+     permission under the Copyright and Similar Rights held by the
+     Licensor. For purposes of this Public License, where the Licensed
+     Material is a musical work, performance, or sound recording,
+     Adapted Material is always produced where the Licensed Material is
+     synched in timed relation with a moving image.
+
+  b. Adapter's License means the license You apply to Your Copyright
+     and Similar Rights in Your contributions to Adapted Material in
+     accordance with the terms and conditions of this Public License.
+
+  c. Copyright and Similar Rights means copyright and/or similar rights
+     closely related to copyright including, without limitation,
+     performance, broadcast, sound recording, and Sui Generis Database
+     Rights, without regard to how the rights are labeled or
+     categorized. For purposes of this Public License, the rights
+     specified in Section 2(b)(1)-(2) are not Copyright and Similar
+     Rights.
+
+  d. Effective Technological Measures means those measures that, in the
+     absence of proper authority, may not be circumvented under laws
+     fulfilling obligations under Article 11 of the WIPO Copyright
+     Treaty adopted on December 20, 1996, and/or similar international
+     agreements.
+
+  e. Exceptions and Limitations means fair use, fair dealing, and/or
+     any other exception or limitation to Copyright and Similar Rights
+     that applies to Your use of the Licensed Material.
+
+  f. Licensed Material means the artistic or literary work, database,
+     or other material to which the Licensor applied this Public
+     License.
+
+  g. Licensed Rights means the rights granted to You subject to the
+     terms and conditions of this Public License, which are limited to
+     all Copyright and Similar Rights that apply to Your use of the
+     Licensed Material and that the Licensor has authority to license.
+
+  h. Licensor means the individual(s) or entity(ies) granting rights
+     under this Public License.
+
+  i. Share means to provide material to the public by any means or
+     process that requires permission under the Licensed Rights, such
+     as reproduction, public display, public performance, distribution,
+     dissemination, communication, or importation, and to make material
+     available to the public including in ways that members of the
+     public may access the material from a place and at a time
+     individually chosen by them.
+
+  j. Sui Generis Database Rights means rights other than copyright
+     resulting from Directive 96/9/EC of the European Parliament and of
+     the Council of 11 March 1996 on the legal protection of databases,
+     as amended and/or succeeded, as well as other essentially
+     equivalent rights anywhere in the world.
+
+  k. You means the individual or entity exercising the Licensed Rights
+     under this Public License. Your has a corresponding meaning.
+
+
+Section 2 -- Scope.
+
+  a. License grant.
+
+       1. Subject to the terms and conditions of this Public License,
+          the Licensor hereby grants You a worldwide, royalty-free,
+          non-sublicensable, non-exclusive, irrevocable license to
+          exercise the Licensed Rights in the Licensed Material to:
+
+            a. reproduce and Share the Licensed Material, in whole or
+               in part; and
+
+            b. produce, reproduce, and Share Adapted Material.
+
+       2. Exceptions and Limitations. For the avoidance of doubt, where
+          Exceptions and Limitations apply to Your use, this Public
+          License does not apply, and You do not need to comply with
+          its terms and conditions.
+
+       3. Term. The term of this Public License is specified in Section
+          6(a).
+
+       4. Media and formats; technical modifications allowed. The
+          Licensor authorizes You to exercise the Licensed Rights in
+          all media and formats whether now known or hereafter created,
+          and to make technical modifications necessary to do so. The
+          Licensor waives and/or agrees not to assert any right or
+          authority to forbid You from making technical modifications
+          necessary to exercise the Licensed Rights, including
+          technical modifications necessary to circumvent Effective
+          Technological Measures. For purposes of this Public License,
+          simply making modifications authorized by this Section 2(a)
+          (4) never produces Adapted Material.
+
+       5. Downstream recipients.
+
+            a. Offer from the Licensor -- Licensed Material. Every
+               recipient of the Licensed Material automatically
+               receives an offer from the Licensor to exercise the
+               Licensed Rights under the terms and conditions of this
+               Public License.
+
+            b. No downstream restrictions. You may not offer or impose
+               any additional or different terms or conditions on, or
+               apply any Effective Technological Measures to, the
+               Licensed Material if doing so restricts exercise of the
+               Licensed Rights by any recipient of the Licensed
+               Material.
+
+       6. No endorsement. Nothing in this Public License constitutes or
+          may be construed as permission to assert or imply that You
+          are, or that Your use of the Licensed Material is, connected
+          with, or sponsored, endorsed, or granted official status by,
+          the Licensor or others designated to receive attribution as
+          provided in Section 3(a)(1)(A)(i).
+
+  b. Other rights.
+
+       1. Moral rights, such as the right of integrity, are not
+          licensed under this Public License, nor are publicity,
+          privacy, and/or other similar personality rights; however, to
+          the extent possible, the Licensor waives and/or agrees not to
+          assert any such rights held by the Licensor to the limited
+          extent necessary to allow You to exercise the Licensed
+          Rights, but not otherwise.
+
+       2. Patent and trademark rights are not licensed under this
+          Public License.
+
+       3. To the extent possible, the Licensor waives any right to
+          collect royalties from You for the exercise of the Licensed
+          Rights, whether directly or through a collecting society
+          under any voluntary or waivable statutory or compulsory
+          licensing scheme. In all other cases the Licensor expressly
+          reserves any right to collect such royalties.
+
+
+Section 3 -- License Conditions.
+
+Your exercise of the Licensed Rights is expressly made subject to the
+following conditions.
+
+  a. Attribution.
+
+       1. If You Share the Licensed Material (including in modified
+          form), You must:
+
+            a. retain the following if it is supplied by the Licensor
+               with the Licensed Material:
+
+                 i. identification of the creator(s) of the Licensed
+                    Material and any others designated to receive
+                    attribution, in any reasonable manner requested by
+                    the Licensor (including by pseudonym if
+                    designated);
+
+                ii. a copyright notice;
+
+               iii. a notice that refers to this Public License;
+
+                iv. a notice that refers to the disclaimer of
+                    warranties;
+
+                 v. a URI or hyperlink to the Licensed Material to the
+                    extent reasonably practicable;
+
+            b. indicate if You modified the Licensed Material and
+               retain an indication of any previous modifications; and
+
+            c. indicate the Licensed Material is licensed under this
+               Public License, and include the text of, or the URI or
+               hyperlink to, this Public License.
+
+       2. You may satisfy the conditions in Section 3(a)(1) in any
+          reasonable manner based on the medium, means, and context in
+          which You Share the Licensed Material. For example, it may be
+          reasonable to satisfy the conditions by providing a URI or
+          hyperlink to a resource that includes the required
+          information.
+
+       3. If requested by the Licensor, You must remove any of the
+          information required by Section 3(a)(1)(A) to the extent
+          reasonably practicable.
+
+       4. If You Share Adapted Material You produce, the Adapter's
+          License You apply must not prevent recipients of the Adapted
+          Material from complying with this Public License.
+
+
+Section 4 -- Sui Generis Database Rights.
+
+Where the Licensed Rights include Sui Generis Database Rights that
+apply to Your use of the Licensed Material:
+
+  a. for the avoidance of doubt, Section 2(a)(1) grants You the right
+     to extract, reuse, reproduce, and Share all or a substantial
+     portion of the contents of the database;
+
+  b. if You include all or a substantial portion of the database
+     contents in a database in which You have Sui Generis Database
+     Rights, then the database in which You have Sui Generis Database
+     Rights (but not its individual contents) is Adapted Material; and
+
+  c. You must comply with the conditions in Section 3(a) if You Share
+     all or a substantial portion of the contents of the database.
+
+For the avoidance of doubt, this Section 4 supplements and does not
+replace Your obligations under this Public License where the Licensed
+Rights include other Copyright and Similar Rights.
+
+
+Section 5 -- Disclaimer of Warranties and Limitation of Liability.
+
+  a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
+     EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
+     AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
+     ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
+     IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
+     WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
+     PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
+     ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
+     KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
+     ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
+
+  b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
+     TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
+     NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
+     INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
+     COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
+     USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
+     ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
+     DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
+     IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
+
+  c. The disclaimer of warranties and limitation of liability provided
+     above shall be interpreted in a manner that, to the extent
+     possible, most closely approximates an absolute disclaimer and
+     waiver of all liability.
+
+
+Section 6 -- Term and Termination.
+
+  a. This Public License applies for the term of the Copyright and
+     Similar Rights licensed here. However, if You fail to comply with
+     this Public License, then Your rights under this Public License
+     terminate automatically.
+
+  b. Where Your right to use the Licensed Material has terminated under
+     Section 6(a), it reinstates:
+
+       1. automatically as of the date the violation is cured, provided
+          it is cured within 30 days of Your discovery of the
+          violation; or
+
+       2. upon express reinstatement by the Licensor.
+
+     For the avoidance of doubt, this Section 6(b) does not affect any
+     right the Licensor may have to seek remedies for Your violations
+     of this Public License.
+
+  c. For the avoidance of doubt, the Licensor may also offer the
+     Licensed Material under separate terms or conditions or stop
+     distributing the Licensed Material at any time; however, doing so
+     will not terminate this Public License.
+
+  d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
+     License.
+
+
+Section 7 -- Other Terms and Conditions.
+
+  a. The Licensor shall not be bound by any additional or different
+     terms or conditions communicated by You unless expressly agreed.
+
+  b. Any arrangements, understandings, or agreements regarding the
+     Licensed Material not stated herein are separate from and
+     independent of the terms and conditions of this Public License.
+
+
+Section 8 -- Interpretation.
+
+  a. For the avoidance of doubt, this Public License does not, and
+     shall not be interpreted to, reduce, limit, restrict, or impose
+     conditions on any use of the Licensed Material that could lawfully
+     be made without permission under this Public License.
+
+  b. To the extent possible, if any provision of this Public License is
+     deemed unenforceable, it shall be automatically reformed to the
+     minimum extent necessary to make it enforceable. If the provision
+     cannot be reformed, it shall be severed from this Public License
+     without affecting the enforceability of the remaining terms and
+     conditions.
+
+  c. No term or condition of this Public License will be waived and no
+     failure to comply consented to unless expressly agreed to by the
+     Licensor.
+
+  d. Nothing in this Public License constitutes or may be interpreted
+     as a limitation upon, or waiver of, any privileges and immunities
+     that apply to the Licensor or You, including from the legal
+     processes of any jurisdiction or authority.
+
+
+=======================================================================
+
+Creative Commons is not a party to its public
+licenses. Notwithstanding, Creative Commons may elect to apply one of
+its public licenses to material it publishes and in those instances
+will be considered the “Licensor.” The text of the Creative Commons
+public licenses is dedicated to the public domain under the CC0 Public
+Domain Dedication. Except for the limited purpose of indicating that
+material is shared under a Creative Commons public license or as
+otherwise permitted by the Creative Commons policies published at
+creativecommons.org/policies, Creative Commons does not authorize the
+use of the trademark "Creative Commons" or any other trademark or logo
+of Creative Commons without its prior written consent including,
+without limitation, in connection with any unauthorized modifications
+to any of its public licenses or any other arrangements,
+understandings, or agreements concerning use of licensed material. For
+the avoidance of doubt, this paragraph does not form part of the
+public licenses.
+
+Creative Commons may be contacted at creativecommons.org.
\ No newline at end of file
diff --git a/source4/setup/adprep/WindowsServerDocs/LICENSE-CODE b/source4/setup/adprep/WindowsServerDocs/LICENSE-CODE
new file mode 100644 (file)
index 0000000..b17b032
--- /dev/null
@@ -0,0 +1,17 @@
+The MIT License (MIT)
+Copyright (c) Microsoft Corporation
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 
+associated documentation files (the "Software"), to deal in the Software without restriction, 
+including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
+and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial 
+portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT 
+NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
+WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/source4/setup/adprep/WindowsServerDocs/Sch49.ldf.diff b/source4/setup/adprep/WindowsServerDocs/Sch49.ldf.diff
new file mode 100644 (file)
index 0000000..790be34
--- /dev/null
@@ -0,0 +1,30 @@
+--- orig/Sch49.ldf     2017-10-03 15:53:31.162142476 +1300
++++ Sch49.ldf  2017-10-03 16:17:07.326514822 +1300
+@@ -669,26 +669,20 @@
+ replace: defaultHidingValue
+ defaultHidingValue: TRUE
+ -  
+ dn: CN=ms-DS-Resource-Properties,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaModify
+ replace: defaultHidingValue
+ defaultHidingValue: TRUE
+ -  
+-dn: CN=ms-DS-List-Of-Claim-Types,CN=Schema,CN=Configuration,DC=X
+-changetype: ntdsSchemaModify
+-replace: defaultHidingValue
+-defaultHidingValue: TRUE
+--  
+-
+ dn: CN=ms-DS-Claim-Type,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaModify
+ add: systemMayContain
+ systemMayContain: 1.2.840.113556.1.4.2157
+ systemMayContain: 1.2.840.113556.1.4.2158
+ systemMayContain: 1.2.840.113556.1.4.2098
+ systemMayContain: 1.2.840.113556.1.4.2159
+ systemMayContain: 1.2.840.113556.1.4.2160
+ -  
+
diff --git a/source4/setup/adprep/WindowsServerDocs/Sch50.ldf.diff b/source4/setup/adprep/WindowsServerDocs/Sch50.ldf.diff
new file mode 100644 (file)
index 0000000..67a9e00
--- /dev/null
@@ -0,0 +1,107 @@
+--- orig/Sch50.ldf     2017-10-03 15:53:31.162142476 +1300
++++ Sch50.ldf  2017-10-03 16:17:07.330514808 +1300
+@@ -3,20 +3,21 @@
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-AllowedToActOnBehalfOfOtherIdentity
+ adminDisplayName: ms-DS-Allowed-To-Act-On-Behalf-Of-Other-Identity
+ adminDescription: This attribute is used for access checks to determine if a requester has permission to act on the behalf of other identities to services running as this account.
+ attributeId: 1.2.840.113556.1.4.2182
+ attributeSyntax: 2.5.5.15
+ omSyntax: 66
+ isSingleValued: TRUE
+ systemOnly: TRUE
++schemaFlagsEx: 1
+ searchFlags: 0
+ rangeLower: 0
+ rangeUpper: 132096
+ schemaIdGuid:: 5cN4P5r3vUaguJ0YEW3ceQ==
+ attributeSecurityGuid:: hri1d0qU0RGuvQAA+ANnwQ==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-Kds-Version,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+@@ -243,21 +244,21 @@
+ ldapDisplayName: msKds-SecretAgreementParam
+ adminDisplayName: ms-Kds-SecretAgreement-Param
+ adminDescription: The parameters for the secret agreement algorithm.
+ attributeId: 1.2.840.113556.1.4.2172
+ attributeSyntax: 2.5.5.10
+ omSyntax: 4
+ isSingleValued: TRUE
+ systemOnly: FALSE
+ searchFlags: 640
+ rangeUpper: 2000
+-schemaIdGuid:: MLCZ2e3+dUm4B+ukRNp56Q==
++schemaIdGuid:: 2ZmwMP7tSXW4B+ukRNp56Q==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-Kds-SecretAgreement-AlgorithmID,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msKds-SecretAgreementAlgorithmID
+ adminDisplayName: ms-Kds-SecretAgreement-AlgorithmID
+ adminDescription: The name of the secret agreement algorithm to be used with public keys.
+ attributeId: 1.2.840.113556.1.4.2171
+@@ -276,56 +277,59 @@
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-ValueTypeReference
+ adminDisplayName: ms-DS-Value-Type-Reference
+ adminDescription: This attribute is used to link a resource property object to its value type.
+ attributeId: 1.2.840.113556.1.4.2187
+ attributeSyntax: 2.5.5.1
+ omSyntax: 127
+ isSingleValued: TRUE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ omObjectClass:: KwwCh3McAIVK
+ schemaIdGuid:: hF38eNzBSDGJhFj3ktQdPg==
+ linkID: 2188
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Value-Type-Reference-BL,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-ValueTypeReferenceBL
+ adminDisplayName: ms-DS-Value-Type-Reference-BL
+ adminDescription: This is the back link for ms-DS-Value-Type-Reference. It links a value type object back to resource properties.
+ attributeId: 1.2.840.113556.1.4.2188
+ attributeSyntax: 2.5.5.1
+ omSyntax: 127
+ isSingleValued: FALSE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ omObjectClass:: KwwCh3McAIVK
+ schemaIdGuid:: rUNVq6EjRTu5N5sxPVR0qA==
+ linkID: 2189
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 17  
+ dn: CN=ms-DS-Is-Possible-Values-Present,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-IsPossibleValuesPresent
+ adminDisplayName: ms-DS-Is-Possible-Values-Present
+ adminDescription: This attribute identifies if ms-DS-Claim-Possible-Values on linked resource property must have value or must not have value.
+ attributeId: 1.2.840.113556.1.4.2186
+ attributeSyntax: 2.5.5.8
+ omSyntax: 1
+ isSingleValued: TRUE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ schemaIdGuid:: 2tyrb1OMTyCxpJ3wxnwetA==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn:
+ changetype: modify
+ add: schemaUpdateNow
+ schemaUpdateNow: 1
+ -  
diff --git a/source4/setup/adprep/WindowsServerDocs/Sch51.ldf.diff b/source4/setup/adprep/WindowsServerDocs/Sch51.ldf.diff
new file mode 100644 (file)
index 0000000..9cb84fa
--- /dev/null
@@ -0,0 +1,225 @@
+--- orig/Sch51.ldf     2017-11-01 10:14:58.508429058 +1300
++++ Sch51.ldf  2017-11-01 10:16:12.391393181 +1300
+@@ -4,173 +4,183 @@
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-TransformationRules
+ adminDisplayName: ms-DS-Transformation-Rules
+ adminDescription: Specifies the Transformation Rules for Across-Forest Claims Transformation.
+ attributeId: 1.2.840.113556.1.4.2189
+ attributeSyntax: 2.5.5.12
+ omSyntax: 64
+ isSingleValued: TRUE
+ systemOnly: FALSE
+ searchFlags: 0
++schemaFlagsEx: 1
+ schemaIdGuid:: cSuHVbLESDuuUUCV+R7GAA==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Applies-To-Resource-Types,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-AppliesToResourceTypes
+ adminDisplayName: ms-DS-Applies-To-Resource-Types
+ adminDescription: For a resource property, this attribute indicates what resource types this resource property applies to.
+ attributeId: 1.2.840.113556.1.4.2195
+ attributeSyntax: 2.5.5.12
+ omSyntax: 64
+ isSingleValued: FALSE
+ systemOnly: FALSE
+ searchFlags: 0
++schemaFlagsEx: 1
+ schemaIdGuid:: BiA/aWRXSj2EOVjwSqtLWQ==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Transformation-Rules-Compiled,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-TransformationRulesCompiled
+ adminDisplayName: ms-DS-Transformation-Rules-Compiled
+ adminDescription: Blob containing compiled transformation rules.
+ attributeId: 1.2.840.113556.1.4.2190
+ attributeSyntax: 2.5.5.10
+ omSyntax: 4
+ isSingleValued: TRUE
+ systemOnly: TRUE
+ searchFlags: 128
++schemaFlagsEx: 1
+ schemaIdGuid:: EJq0C2tTTbyicwurDdS9EA==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 17  
+ dn: CN=ms-DS-Egress-Claims-Transformation-Policy,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-EgressClaimsTransformationPolicy
+ adminDisplayName: ms-DS-Egress-Claims-Transformation-Policy
+ adminDescription: This is a link to a Claims Transformation Policy Object for the egress claims (claims leaving this forest) to the Trusted Domain. This is applicable only for an incoming or bidirectional Across-Forest Trust. When this link is not present, all claims are allowed to egress as-is.
+ attributeId: 1.2.840.113556.1.4.2192
+ attributeSyntax: 2.5.5.1
+ omSyntax: 127
+ isSingleValued: TRUE
+ systemOnly: FALSE
+ searchFlags: 0
++schemaFlagsEx: 1
+ omObjectClass:: KwwCh3McAIVK
+ schemaIdGuid:: fkI3wXOaQLCRkBsJW7QyiA==
+ linkID: 2192
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Ingress-Claims-Transformation-Policy,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-IngressClaimsTransformationPolicy
+ adminDisplayName: ms-DS-Ingress-Claims-Transformation-Policy
+ adminDescription: This is a link to a Claims Transformation Policy Object for the ingress claims (claims entering this forest) from the Trusted Domain. This is applicable only for an outgoing or bidirectional Across-Forest Trust. If this link is absent, all the ingress claims are dropped.
+ attributeId: 1.2.840.113556.1.4.2191
+ attributeSyntax: 2.5.5.1
+ omSyntax: 127
+ isSingleValued: TRUE
+ systemOnly: FALSE
+ searchFlags: 0
++schemaFlagsEx: 1
+ omObjectClass:: KwwCh3McAIVK
+ schemaIdGuid:: CEwohm4MQBWLFXUUfSPSDQ==
+ linkID: 2190
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-TDO-Egress-BL,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-TDOEgressBL
+ adminDisplayName: ms-DS-TDO-Egress-BL
+ adminDescription: Backlink to TDO Egress rules link on object.
+ attributeId: 1.2.840.113556.1.4.2194
+ attributeSyntax: 2.5.5.1
+ omSyntax: 127
+ isSingleValued: FALSE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ omObjectClass:: KwwCh3McAIVK
+ schemaIdGuid:: KWIA1ROZQiKLF4N2HR4OWw==
+ linkID: 2193
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 17  
+ dn: CN=ms-DS-TDO-Ingress-BL,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-TDOIngressBL
+ adminDisplayName: ms-DS-TDO-Ingress-BL
+ adminDescription: Backlink to TDO Ingress rules link on object.
+ attributeId: 1.2.840.113556.1.4.2193
+ attributeSyntax: 2.5.5.1
+ omSyntax: 127
+ isSingleValued: FALSE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ omObjectClass:: KwwCh3McAIVK
+ schemaIdGuid:: oWFWWsaXS1SAVuQw/nvFVA==
+ linkID: 2191
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 17  
+ dn: CN=ms-DS-ManagedPassword,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-ManagedPassword
+ adminDisplayName: msDS-ManagedPassword
+ adminDescription: This attribute is the managed password data for a group MSA.
+ attributeId: 1.2.840.113556.1.4.2196
+ attributeSyntax: 2.5.5.10
+ omSyntax: 4
+ isSingleValued: TRUE
+ systemOnly: FALSE
+ searchFlags: 0
++schemaFlagsEx: 1
+ schemaIdGuid:: hu1i4yi3QgiyfS3qep3yGA==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 20  
+ dn: CN=ms-DS-ManagedPasswordId,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-ManagedPasswordId
+ adminDisplayName: msDS-ManagedPasswordId
+ adminDescription: This attribute is the identifier for the current managed password data for a group MSA.
+ attributeId: 1.2.840.113556.1.4.2197
+ attributeSyntax: 2.5.5.10
+ omSyntax: 4
+ isSingleValued: TRUE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ rangeUpper: 1024
+ schemaIdGuid:: Wil4DtPGQAq0kdYiUf+gpg==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-GroupMSAMembership,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-GroupMSAMembership
+ adminDisplayName: msDS-GroupMSAMembership
+ adminDescription: This attribute is used for access checks to determine if a requester has permission to retrieve the password for a group MSA.
+ attributeId: 1.2.840.113556.1.4.2200
+ attributeSyntax: 2.5.5.15
+ omSyntax: 66
+ isSingleValued: TRUE
+ systemOnly: FALSE
+ searchFlags: 0
++schemaFlagsEx: 1
+ rangeUpper: 132096
+ schemaIdGuid:: 1u2OiATOQN+0YrilDkG6OA==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-GeoCoordinates-Altitude,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-GeoCoordinatesAltitude
+ adminDisplayName: ms-DS-GeoCoordinates-Altitude
+@@ -222,36 +232,38 @@
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-ManagedPasswordInterval
+ adminDisplayName: msDS-ManagedPasswordInterval
+ adminDescription: This attribute is used to retrieve the number of days before a managed password is automatically changed for a group MSA.
+ attributeId: 1.2.840.113556.1.4.2199
+ attributeSyntax: 2.5.5.9
+ omSyntax: 2
+ isSingleValued: TRUE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ schemaIdGuid:: 9451+HasQ4ii7qJrTcr0CQ==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-ManagedPasswordPreviousId,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ ldapDisplayName: msDS-ManagedPasswordPreviousId
+ adminDisplayName: msDS-ManagedPasswordPreviousId
+ adminDescription: This attribute is the identifier for the previous managed password data for a group MSA.
+ attributeId: 1.2.840.113556.1.4.2198
+ attributeSyntax: 2.5.5.10
+ omSyntax: 4
+ isSingleValued: TRUE
+ systemOnly: TRUE
+ searchFlags: 0
++schemaFlagsEx: 1
+ rangeUpper: 1024
+ schemaIdGuid:: MSHW0EotT9CZ2RxjZGIppA==
+ showInAdvancedViewOnly: TRUE
+ systemFlags: 16  
+ dn:
+ changetype: modify
+ add: schemaUpdateNow
+ schemaUpdateNow: 1
+ -  
diff --git a/source4/setup/adprep/WindowsServerDocs/Sch57.ldf.diff b/source4/setup/adprep/WindowsServerDocs/Sch57.ldf.diff
new file mode 100644 (file)
index 0000000..adf53e8
--- /dev/null
@@ -0,0 +1,105 @@
+--- orig/Sch57.ldf     2017-10-03 15:53:31.170142465 +1300
++++ Sch57.ldf  2017-10-03 16:17:07.334514795 +1300
+@@ -61,96 +61,101 @@
+ adminDescription: This attribute is used to enable or disable the user-device relationship.
+ ldapDisplayName: msDS-IsEnabled
+ attributeId: 1.2.840.113556.1.4.2248
+ omSyntax: 1
+ attributeSyntax: 2.5.5.8
+ isSingleValued: TRUE
+ instanceType: 4
+ searchFlags: 0
+ systemOnly: FALSE
+ schemaIdGuid:: DlypIoMfgkyUzr6miM/IcQ==
++isMemberOfPartialAttributeSet: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Device-OS-Type,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ cn: ms-DS-Device-OS-Type
+ adminDisplayName: ms-DS-Device-OS-Type
+ adminDescription: This attribute is used to track the type of device based on the OS.
+ ldapDisplayName: msDS-DeviceOSType
+ attributeId: 1.2.840.113556.1.4.2249
+ omSyntax: 64
+ attributeSyntax: 2.5.5.12
+ isSingleValued: FALSE
+ instanceType: 4
+ rangeLower: 0
+ rangeUpper: 1024
+ searchFlags: 0
+ systemOnly: FALSE
+ schemaIdGuid:: TUUOELvzy02EX41e3EccWQ==
++isMemberOfPartialAttributeSet: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Device-OS-Version,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ cn: ms-DS-Device-OS-Version
+ adminDisplayName: ms-DS-Device-OS-Version
+ adminDescription: This attribute is used to track the OS version of the device.
+ ldapDisplayName: msDS-DeviceOSVersion
+ attributeId: 1.2.840.113556.1.4.2250
+ omSyntax: 64
+ attributeSyntax: 2.5.5.12
+ isSingleValued: FALSE
+ instanceType: 4
+ rangeLower: 0
+ rangeUpper: 512
+-searchFlags: 0
++searchFlags: 1
+ systemOnly: FALSE
+ schemaIdGuid:: Y4z7cKtfBEWrnRSzKain+A==
++isMemberOfPartialAttributeSet: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ cn: ms-DS-Device-Physical-IDs
+ adminDisplayName: ms-DS-Device-Physical-IDs
+ adminDescription: This attribute is used to store identifiers of the physical device.
+ ldapDisplayName: msDS-DevicePhysicalIDs
+ attributeId: 1.2.840.113556.1.4.2251
+ omSyntax: 4
+ attributeSyntax: 2.5.5.10
+ isSingleValued: FALSE
+ instanceType: 4
+ rangeLower: 1
+ rangeUpper: 10485760
+ searchFlags: 1
+ systemOnly: FALSE
+ schemaIdGuid:: FFRhkKCiR0Spk1NAlZm3Tg==
++isMemberOfPartialAttributeSet: TRUE
+ systemFlags: 16  
+ dn: CN=ms-DS-Device-ID,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
+ objectClass: attributeSchema
+ cn: ms-DS-Device-ID
+ adminDisplayName: ms-DS-Device-ID
+ adminDescription: This attribute stores the ID of the device.
+ ldapDisplayName: msDS-DeviceID
+ attributeId: 1.2.840.113556.1.4.2252
+ omSyntax: 4
+ attributeSyntax: 2.5.5.10
+ isSingleValued: TRUE
+ instanceType: 4
+ rangeLower: 16
+ rangeUpper: 16
+ searchFlags: 1
+ systemOnly: FALSE
+ schemaIdGuid:: x4EBw0Jj+0GyeffFZsvgpw==
++isMemberOfPartialAttributeSet: TRUE
+ systemFlags: 16  
+ dn:
+ changetype: modify
+ add: schemaUpdateNow
+ schemaUpdateNow: 1
+ -  
+ dn: CN=ms-DS-Device-Registration-Service-Container,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaAdd
diff --git a/source4/setup/adprep/WindowsServerDocs/Sch59.ldf.diff b/source4/setup/adprep/WindowsServerDocs/Sch59.ldf.diff
new file mode 100644 (file)
index 0000000..b53a7bb
--- /dev/null
@@ -0,0 +1,26 @@
+--- orig/Sch59.ldf     2017-10-03 15:53:31.170142465 +1300
++++ Sch59.ldf  2017-10-03 16:17:07.338514781 +1300
+@@ -160,23 +160,20 @@
+ changetype: ntdsSchemaModify
+ replace: isSingleValued
+ isSingleValued: TRUE
+ -  
+ dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaModify
+ replace: omSyntax
+ omSyntax: 64
+ -  
+-
+-dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X
+-changetype: ntdsSchemaModify
+ replace: attributeSyntax
+ attributeSyntax: 2.5.5.12
+ -  
+ dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X
+ changetype: ntdsSchemaModify
+ replace: rangeUpper
+ rangeUpper: 1024
+ -  
diff --git a/source4/setup/adprep/WindowsServerDocs/Schema-Updates.md b/source4/setup/adprep/WindowsServerDocs/Schema-Updates.md
new file mode 100644 (file)
index 0000000..18dc91e
--- /dev/null
@@ -0,0 +1,4583 @@
+---\r
+ms.assetid: abf69b09-6528-42e0-b164-813c7c2c78e7\r
+title: Schema Updates\r
+description:\r
+author: billmath\r
+ms.author: billmath\r
+manager: femila\r
+ms.date: 05/31/2017\r
+ms.topic: article\r
+ms.prod: windows-server-threshold\r
+\r
+ms.technology: identity-adds\r
+---\r
+\r
+# Schema Updates\r
+\r
+>Applies To: Windows Server 2016, Windows Server 2012 R2, Windows Server 2012\r
+\r
+This topic lists the LDF files that include the changes that Adprep.exe makes in  Windows Server 2012 R2  and.  \r
+  \r
+These are the LDF files included in  Windows Server 2012 R2 :  \r
+  \r
+-   [Sch57.ldf](#BKMK_Sch57)  \r
+  \r
+-   [Sch58.ldf](#BKMK_Sch58)  \r
+  \r
+-   [Sch59.ldf](#BKMK_Sch59)  \r
+  \r
+-   [Sch60.ldf](#BKMK_Sch60)  \r
+  \r
+-   [Sch61.ldf](#BKMK_Sch61)  \r
+  \r
+-   [Sch62.ldf](#BKMK_Sch62)  \r
+  \r
+-   [Sch63.ldf](#BKMK_Sch63)  \r
+  \r
+-   [Sch64.ldf](#BKMK_Sch64)  \r
+  \r
+-   [Sch65.ldf](#BKMK_Sch65)  \r
+  \r
+-   [Sch66.ldf](#BKMK_Sch66)  \r
+  \r
+-   [Sch67.ldf](#BKMK_Sch67)  \r
+  \r
+-   [Sch68.ldf](#BKMK_Sch68)  \r
+  \r
+-   [Sch69.ldf](#BKMK_Sch69)  \r
+  \r
+These are the LDF files included in  Windows Server 2012 :  \r
+  \r
+-   [Sch48.ldf](#BKMK_Sch48)  \r
+  \r
+-   [Sch49.ldf](#BKMK_Sch49)  \r
+  \r
+-   [Sch50.ldf](#BKMK_Sch50)  \r
+  \r
+-   [Sch51.ldf](#BKMK_Sch51)  \r
+  \r
+-   [Sch52.ldf](#BKMK_Sch52)  \r
+  \r
+-   [Sch53.ldf](#BKMK_Sch53)  \r
+  \r
+-   [Sch54.ldf](#BKMK_Sch54)  \r
+  \r
+-   [Sch55.ldf](#BKMK_Sch55)  \r
+  \r
+-   [Sch56.ldf](#BKMK_Sch56)  \r
+  \r
+## <a name="BKMK_SchemaUpdates2012R2"></a>Schema Updates in Windows Server 2012 R2  \r
+  \r
+### <a name="BKMK_Sch57"></a>Sch57.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Issuer-Certificates,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Issuer-Certificates  \r
+adminDisplayName: ms-DS-Issuer-Certificates  \r
+adminDescription: The keys used to sign certificates issued by the Registration Service.  \r
+ldapDisplayName: msDS-IssuerCertificates  \r
+attributeId: 1.2.840.113556.1.4.2240  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+rangeLower: 1  \r
+rangeUpper: 65536  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: 2m89a5MIxEOJ+x+1KmYWqQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Registration-Quota,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Registration-Quota  \r
+adminDisplayName: ms-DS-Registration-Quota  \r
+adminDescription: Policy used to limit the number of registrations allowed for a single user.  \r
+ldapDisplayName: msDS-RegistrationQuota  \r
+attributeId: 1.2.840.113556.1.4.2241  \r
+omSyntax: 2  \r
+attributeSyntax: 2.5.5.9  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: woYyymQfeUCWvOYrYQ5zDw==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Maximum-Registration-Inactivity-Period,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Maximum-Registration-Inactivity-Period  \r
+adminDisplayName: ms-DS-Maximum-Registration-Inactivity-Period  \r
+adminDescription: The maximum ammount of days used to detect inactivty of registration objects.  \r
+ldapDisplayName: msDS-MaximumRegistrationInactivityPeriod  \r
+attributeId: 1.2.840.113556.1.4.2242  \r
+omSyntax: 2  \r
+attributeSyntax: 2.5.5.9  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: OapcCuYFykm4CAJbk2YQ5w==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Is-Enabled,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Is-Enabled  \r
+adminDisplayName: ms-DS-Is-Enabled  \r
+adminDescription: This attribute is used to enable or disable the user-device relationship.  \r
+ldapDisplayName: msDS-IsEnabled  \r
+attributeId: 1.2.840.113556.1.4.2248  \r
+omSyntax: 1  \r
+attributeSyntax: 2.5.5.8  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: DlypIoMfgkyUzr6miM/IcQ==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Device-OS-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Device-OS-Type  \r
+adminDisplayName: ms-DS-Device-OS-Type  \r
+adminDescription: This attribute is used to track the type of device based on the OS.  \r
+ldapDisplayName: msDS-DeviceOSType  \r
+attributeId: 1.2.840.113556.1.4.2249  \r
+omSyntax: 64  \r
+attributeSyntax: 2.5.5.12  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+rangeLower: 0  \r
+rangeUpper: 1024  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: TUUOELvzy02EX41e3EccWQ==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Device-OS-Version,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Device-OS-Version  \r
+adminDisplayName: ms-DS-Device-OS-Version  \r
+adminDescription: This attribute is used to track the OS version of the device.  \r
+ldapDisplayName: msDS-DeviceOSVersion  \r
+attributeId: 1.2.840.113556.1.4.2250  \r
+omSyntax: 64  \r
+attributeSyntax: 2.5.5.12  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+rangeLower: 0  \r
+rangeUpper: 512  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: Y4z7cKtfBEWrnRSzKain+A==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Device-Physical-IDs  \r
+adminDisplayName: ms-DS-Device-Physical-IDs  \r
+adminDescription: This attribute is used to store identifiers of the physical device.  \r
+ldapDisplayName: msDS-DevicePhysicalIDs  \r
+attributeId: 1.2.840.113556.1.4.2251  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+rangeLower: 1  \r
+rangeUpper: 10485760  \r
+searchFlags: 1  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: FFRhkKCiR0Spk1NAlZm3Tg==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Device-ID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Device-ID  \r
+adminDisplayName: ms-DS-Device-ID  \r
+adminDescription: This attribute stores the ID of the device.  \r
+ldapDisplayName: msDS-DeviceID  \r
+attributeId: 1.2.840.113556.1.4.2252  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+rangeLower: 16  \r
+rangeUpper: 16  \r
+searchFlags: 1  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: x4EBw0Jj+0GyeffFZsvgpw==  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service-Container,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+cn: ms-DS-Device-Registration-Service-Container  \r
+adminDisplayName: ms-DS-Device-Registration-Service-Container  \r
+adminDescription: A class for the container used to house all enrollment services used for device registrations.  \r
+ldapDisplayName: msDS-DeviceRegistrationServiceContainer  \r
+rDNAttID: cn  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+governsId: 1.2.840.113556.1.5.287  \r
+instanceType: 4  \r
+objectClassCategory: 1  \r
+schemaIdGuid:: zlULMc09kkOpbcnjU5fCTw==  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+systemFlags: 16  \r
+subClassOf: top  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+  \r
+dn: CN=ms-DS-Device-Container,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+cn: ms-DS-Device-Container  \r
+adminDisplayName: ms-DS-Device-Container  \r
+adminDescription: A class for the container used to hold device objects.  \r
+ldapDisplayName: msDS-DeviceContainer  \r
+rDNAttID: cn  \r
+defaultSecurityDescriptor: D:(A;;RPLCLORC;;;AU)(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+governsId: 1.2.840.113556.1.5.289  \r
+instanceType: 4  \r
+objectClassCategory: 1  \r
+schemaIdGuid:: WIyefBuQqE627E656fwOEQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+systemFlags: 16  \r
+subClassOf: top  \r
+systemPossSuperiors: 1.2.840.113556.1.5.67  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+cn: ms-DS-Device-Registration-Service  \r
+adminDisplayName: ms-DS-Device-Registration-Service  \r
+adminDescription: An object of this class holds the registration service configuration used for devices.  \r
+ldapDisplayName: msDS-DeviceRegistrationService  \r
+rDNAttID: cn  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+governsId: 1.2.840.113556.1.5.284  \r
+instanceType: 4  \r
+objectClassCategory: 1  \r
+schemaIdGuid:: Gjq8ltLj00mvEXsN951n9Q==  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+systemFlags: 16  \r
+subClassOf: top  \r
+systemPossSuperiors: 1.2.840.113556.1.5.287  \r
+systemMayContain: 1.2.840.113556.1.4.2240  \r
+systemMayContain: 1.2.840.113556.1.4.2241  \r
+systemMayContain: 1.2.840.113556.1.4.2242  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+cn: ms-DS-Device  \r
+adminDisplayName: ms-DS-Device  \r
+adminDescription: An object of this type represents a registered device.  \r
+ldapDisplayName: msDS-Device  \r
+rDNAttID: cn  \r
+defaultSecurityDescriptor: D:(A;;RPLCLORC;;;AU)(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+governsId: 1.2.840.113556.1.5.286  \r
+instanceType: 4  \r
+objectClassCategory: 1  \r
+schemaIdGuid:: c7byXUFtdEez6NUujun/mQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+systemFlags: 16  \r
+subClassOf: top  \r
+systemPossSuperiors: 1.2.840.113556.1.5.289  \r
+systemMayContain: 1.2.840.113556.1.4.2248  \r
+systemMayContain: 1.2.840.113556.1.4.2249  \r
+systemMayContain: 1.2.840.113556.1.4.2250  \r
+systemMayContain: 1.2.840.113556.1.4.2251  \r
+systemMayContain: 1.2.840.113556.1.4.2252  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 57  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch58"></a>Sch58.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Resource-Property-List,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultHidingValue  \r
+defaultHidingValue: FALSE  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 58  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch59"></a>Sch59.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-User-Device-Registration,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-User-Device-Registration-Container,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+delete: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2246  \r
+-  \r
+  \r
+dn: CN=User,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+delete: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2244  \r
+-  \r
+  \r
+dn: CN=ms-DS-User-Device-Registration-Link,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-User-Device-Registration-Link-BL,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Authentication-Level,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Approximate-Last-Use-Time-Stamp,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Reference,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Location,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Device-Location  \r
+adminDisplayName: ms-DS-Device-Location  \r
+adminDescription: The DN under which the device objects will be created.  \r
+ldapDisplayName: msDS-DeviceLocation  \r
+attributeId: 1.2.840.113556.1.4.2261  \r
+omSyntax: 127  \r
+omObjectClass:: KwwCh3McAIVK  \r
+attributeSyntax: 2.5.5.1  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+systemOnly: TRUE  \r
+schemaIdGuid:: yFb74+hd9UWxsdK2zTHnYg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Registered-Owner,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Registered-Owner  \r
+adminDisplayName: ms-DS-Registered-Owner  \r
+adminDescription: Single valued binary attribute containing the primary SID referencing the first user to register the device. The value is not removed during de-registration, but could be managed by an administrator.  \r
+ldapDisplayName: msDS-RegisteredOwner  \r
+attributeId: 1.2.840.113556.1.4.2258  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: 6SZ2YesBz0KZH85heYIjfg==  \r
+systemFlags: 18  \r
+  \r
+dn: CN=ms-DS-Registered-Users,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Registered-Users  \r
+adminDisplayName: ms-DS-Registered-Users  \r
+adminDescription: Contains the list of users that have registered the device.  Users in this list have all of the features provided by the "Company Portal" app.  And they have SSO to company resources.  \r
+ldapDisplayName: msDS-RegisteredUsers  \r
+attributeId: 1.2.840.113556.1.4.2263  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: DBZJBI5ayE+wUgHA9uSPAg==  \r
+systemFlags: 18  \r
+  \r
+dn: CN=ms-DS-Approximate-Last-Logon-Time-Stamp,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Approximate-Last-Logon-Time-Stamp  \r
+adminDisplayName: ms-DS-Approximate-Last-Logon-Time-Stamp  \r
+adminDescription: The approximate time a user last logged on with from the device.  \r
+ldapDisplayName: msDS-ApproximateLastLogonTimeStamp  \r
+attributeId: 1.2.840.113556.1.4.2262  \r
+omSyntax: 65  \r
+attributeSyntax: 2.5.5.16  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: O5hPo8aEDE+QUKOhSh01pA==  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Device-Object-Version,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Device-Object-Version  \r
+adminDisplayName: ms-DS-Device-Object-Version  \r
+adminDescription: This attribute is used to identify the schema version of the device.  \r
+ldapDisplayName: msDS-DeviceObjectVersion  \r
+attributeId: 1.2.840.113556.1.4.2257  \r
+omSyntax: 2  \r
+attributeSyntax: 2.5.5.9  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: Wmll73nxak6T3rAeBmgc+w==  \r
+systemFlags: 18  \r
+  \r
+dn: CN=ms-DS-Device-OS-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: isSingleValued  \r
+isSingleValued: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-OS-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: searchFlags  \r
+searchFlags: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-OS-Version,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: isSingleValued  \r
+isSingleValued: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: omSyntax  \r
+omSyntax: 64  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: attributeSyntax  \r
+attributeSyntax: 2.5.5.12  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: rangeUpper  \r
+rangeUpper: 1024  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMustContain  \r
+systemMustContain: 1.2.840.113556.1.4.2261  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2257  \r
+systemMayContain: 1.2.840.113556.1.4.2258  \r
+systemMayContain: 1.2.840.113556.1.4.2262  \r
+systemMayContain: 1.2.840.113556.1.4.2263  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+delete: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2248  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMustContain  \r
+systemMustContain: 1.2.840.113556.1.4.2248  \r
+systemMustContain: 1.2.840.113556.1.2.13  \r
+systemMustContain: 1.2.840.113556.1.4.867  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 59  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch60"></a>Sch60.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Is-Member-Of-DL-Transitive,CN=Schema,CN=Configuration,DC=X  \r
+# This constructed attribute transitively expands the   \r
+# linked attribute "isMemberOfDL"  \r
+changetype: ntdsschemaadd  \r
+objectClass: attributeSchema  \r
+lDAPDisplayName: msds-memberOfTransitive  \r
+adminDisplayName: msds-memberOfTransitive  \r
+adminDescription: msds-memberOfTransitive  \r
+attributeID: 1.2.840.113556.1.4.2236  \r
+attributeSyntax: 2.5.5.1  \r
+oMSyntax: 127  \r
+oMObjectClass:: KwwCh3McAIVK  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+# 0x800(only return on base search)   \r
+searchFlags: 2048  \r
+showInAdvancedViewOnly: TRUE  \r
+schemaIdGuid:: tmYhhkHJJ0eVZUi//ylB3g==  \r
+# 0x10 (base schema) +  \r
+# 0x08 (operational) +  \r
+# 0x04 (constructed) +  \r
+# 0x01 (not replicated)  \r
+systemFlags: 29  \r
+  \r
+dn: CN=ms-DS-Member-Transitive,CN=Schema,CN=Configuration,DC=X  \r
+# This constructed attribute transitively expands the   \r
+# linked attribute "member"  \r
+changetype: ntdsschemaadd  \r
+objectClass: attributeSchema  \r
+lDAPDisplayName: msds-memberTransitive  \r
+adminDisplayName: msds-memberTransitive  \r
+adminDescription: msds-memberTransitive  \r
+attributeID: 1.2.840.113556.1.4.2238  \r
+attributeSyntax: 2.5.5.1  \r
+oMSyntax: 127  \r
+oMObjectClass:: KwwCh3McAIVK  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+# 0x800(only return on base search)   \r
+searchFlags: 2048  \r
+showInAdvancedViewOnly: TRUE  \r
+schemaIdGuid:: WzkV4gSR2US4lDmeyeId/A==  \r
+# 0x10 (base schema) +  \r
+# 0x08 (operational) +  \r
+# 0x04 (constructed) +  \r
+# 0x01 (not replicated)  \r
+systemFlags: 29  \r
+  \r
+dn: CN=ms-DS-Parent-Dist-Name,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsschemaadd  \r
+objectClass: attributeSchema  \r
+lDAPDisplayName: msDS-parentdistname  \r
+adminDisplayName: ms-DS-Parent-Dist-Name  \r
+adminDescription: ms-DS-Parent-Dist-Name  \r
+attributeID: 1.2.840.113556.1.4.2203  \r
+attributeSyntax: 2.5.5.1  \r
+oMSyntax: 127  \r
+oMObjectClass:: KwwCh3McAIVK  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIDGUID:: ff4YuRqXBPSeIZJhq+yXCw==  \r
+showInAdvancedViewOnly: TRUE  \r
+# 0x10 (base schema) +   \r
+# 0x08 (operational) +   \r
+# 0x04 (constructed) +   \r
+# 0x01 (not replicated)  \r
+systemFlags: 29  \r
+  \r
+dn: CN=ms-DS-Repl-Value-Meta-Data-Ext,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ReplValueMetaDataExt  \r
+adminDisplayName: ms-DS-Repl-Value-Meta-Data-Ext  \r
+adminDescription: ms-DS-Repl-Value-Meta-Data-Ext  \r
+attributeId: 1.2.840.113556.1.4.2235  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 79ICHq1EskamfZ/RjXgLyg==  \r
+showInAdvancedViewOnly: TRUE  \r
+# 0x10 (base schema) +   \r
+# 0x04 (constructed)  \r
+systemFlags: 20  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: cn=Top,cn=Schema,cn=Configuration,dc=X  \r
+changetype: ntdsschemamodify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2238  \r
+systemMayContain: 1.2.840.113556.1.4.2236  \r
+systemMayContain: 1.2.840.113556.1.4.2203  \r
+systemMayContain: 1.2.840.113556.1.4.2235  \r
+-  \r
+  \r
+dn: CN=DS-Set-Owner,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+displayName: Set Owner of an object during creation.  \r
+rightsGuid: 4125c71f-7fac-4ff0-bcb7-f09a41325286  \r
+appliesTo: 26f11b08-a29d-4869-99bb-ef0b99fd883e  \r
+validAccesses: 256  \r
+  \r
+dn: CN=DS-Bypass-Quota,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+displayName: Bypass the quota restrictions during creation.  \r
+rightsGuid: 88a9933e-e5c8-4f2a-9dd7-2527416b8092  \r
+appliesTo: 26f11b08-a29d-4869-99bb-ef0b99fd883e  \r
+validAccesses: 256  \r
+  \r
+dn: CN=DS-Read-Partition-Secrets,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+displayName: Read secret attributes of objects in a Partition  \r
+rightsGuid: 084c93a2-620d-4879-a836-f0ae47de0e89  \r
+appliesTo: 26f11b08-a29d-4869-99bb-ef0b99fd883e  \r
+validAccesses: 256  \r
+  \r
+dn: CN=DS-Write-Partition-Secrets,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+displayName: Write secret attributes of objects in a Partition  \r
+rightsGuid: 94825A8D-B171-4116-8146-1E34D8F54401  \r
+appliesTo: 26f11b08-a29d-4869-99bb-ef0b99fd883e  \r
+validAccesses: 256  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 60  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch61"></a>Sch61.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Drs-Farm-ID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Drs-Farm-ID  \r
+adminDisplayName: ms-DS-Drs-Farm-ID  \r
+adminDescription: This attribute stores the name of the federation service this DRS object is associated with.  \r
+ldapDisplayName: msDS-DrsFarmID  \r
+attributeId: 1.2.840.113556.1.4.2265  \r
+omSyntax: 64  \r
+attributeSyntax: 2.5.5.12  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemOnly: TRUE  \r
+schemaIdGuid:: ZvdVYC4gzUmovuUrsVnt+w==  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMustContain  \r
+systemMustContain: 1.2.840.113556.1.4.2248  \r
+systemMustContain: 1.2.840.113556.1.4.2265  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 61  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch62"></a>Sch62.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Issuer-Public-Certificates,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Issuer-Public-Certificates  \r
+adminDisplayName: ms-DS-Issuer-Public-Certificates  \r
+adminDescription: The public keys  of the keys used to sign certificates issued by the Registration Service.  \r
+ldapDisplayName: msDS-IssuerPublicCertificates  \r
+attributeId: 1.2.840.113556.1.4.2269  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+rangeLower: 1  \r
+rangeUpper: 65536  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: /u3xtdK0dkCrD2FINCsL9g==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2269  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 62  \r
+-  \r
+  \r
+```  \r
+  \r
+### <a name="BKMK_Sch63"></a>Sch63.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Issuer-Certificates,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: searchFlags  \r
+searchFlags: 128  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultSecurityDescriptor  \r
+defaultSecurityDescriptor: D:(A;;RPLCLORC;;;AU)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service-Container,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultSecurityDescriptor  \r
+defaultSecurityDescriptor: D:(A;;RPLCLORC;;;AU)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 63  \r
+-  \r
+  \r
+```  \r
+  \r
+### <a name="BKMK_Sch64"></a>Sch64.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultSecurityDescriptor  \r
+defaultSecurityDescriptor: D:(A;;RPLCLORC;;;AU)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service-Container,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultSecurityDescriptor  \r
+defaultSecurityDescriptor: D:(A;;RPLCLORC;;;AU)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+delete: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2252  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMustContain  \r
+systemMustContain: 1.2.840.113556.1.4.2252  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 64  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch65"></a>Sch65.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Registration-Quota,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Maximum-Registration-Inactivity-Period,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Registered-Owner,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Registered-Users,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Approximate-Last-Logon-Time-Stamp,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Is-Enabled,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-OS-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-OS-Version,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Physical-IDs,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-ID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Object-Version,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Drs-Farm-ID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: showInAdvancedViewOnly  \r
+showInAdvancedViewOnly: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-IsManaged,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-IsManaged  \r
+adminDisplayName: ms-DS-IsManaged  \r
+adminDescription: This attribute is used to indicate the device is managed by a on-premises MDM.  \r
+ldapDisplayName: msDS-IsManaged  \r
+attributeId: 1.2.840.113556.1.4.2270  \r
+omSyntax: 1  \r
+attributeSyntax: 2.5.5.8  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 1  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: zmpoYCds3kOk5fAML40zCQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Cloud-IsManaged,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Cloud-IsManaged  \r
+adminDisplayName: ms-DS-Cloud-IsManaged  \r
+adminDescription: This attribute is used to indicate the device is managed by a cloud MDM.  \r
+ldapDisplayName: msDS-CloudIsManaged  \r
+attributeId: 1.2.840.113556.1.4.2271  \r
+omSyntax: 1  \r
+attributeSyntax: 2.5.5.8  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 1  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: jroVU4+VUku9OBNJowTdYw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Cloud-Anchor,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Cloud-Anchor  \r
+adminDisplayName: ms-DS-Cloud-Anchor  \r
+adminDescription: This attribute is used by the DirSync engine to indicate the object SOA and to maintain the relationship between the on-premises and cloud object.  \r
+ldapDisplayName: msDS-CloudAnchor  \r
+attributeId: 1.2.840.113556.1.4.2273  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: gF5WeNQD40+vrIw7yi82Uw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Cloud-Issuer-Public-Certificates,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Cloud-Issuer-Public-Certificates  \r
+adminDisplayName: ms-DS-Cloud-Issuer-Public-Certificates  \r
+adminDescription: The public keys used by the cloud DRS to sign certificates issued by the Registration Service.  \r
+ldapDisplayName: msDS-CloudIssuerPublicCertificates  \r
+attributeId: 1.2.840.113556.1.4.2274  \r
+omSyntax: 4  \r
+attributeSyntax: 2.5.5.10  \r
+isSingleValued: FALSE  \r
+instanceType: 4  \r
+rangeLower: 1  \r
+rangeUpper: 65536  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: T7XoodZL0k+Y4rzukqVUlw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Cloud-IsEnabled,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-Cloud-IsEnabled  \r
+adminDisplayName: ms-DS-Cloud-IsEnabled  \r
+adminDescription: This attribute is used to indicate whether cloud DRS is enabled.  \r
+ldapDisplayName: msDS-CloudIsEnabled  \r
+attributeId: 1.2.840.113556.1.4.2275  \r
+omSyntax: 1  \r
+attributeSyntax: 2.5.5.8  \r
+isSingleValued: TRUE  \r
+instanceType: 4  \r
+searchFlags: 0  \r
+systemOnly: FALSE  \r
+schemaIdGuid:: KIOEiU58b0+gEyjOOtKC3A==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2270  \r
+systemMayContain: 1.2.840.113556.1.4.2271  \r
+systemMayContain: 1.2.840.113556.1.4.2273  \r
+-  \r
+  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2274  \r
+systemMayContain: 1.2.840.113556.1.4.2275  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 65  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch66"></a>Sch66.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-SyncServerUrl,CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-SyncServerUrl  \r
+ldapDisplayName: msDS-SyncServerUrl  \r
+adminDisplayName: ms-DS-SyncServerUrl  \r
+adminDescription: Use this attribute to store the sync server (Url format) which hosts the user sync folder  \r
+AttributeID: 1.2.840.113556.1.4.2276  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: FALSE  \r
+SystemOnly: FALSE  \r
+searchFlags: 1  \r
+rangeLower: 1  \r
+rangeUpper: 512  \r
+schemaIdGuid:: 0sOst3QqpE+sJeY/6LYSGA==  \r
+showInAdvancedViewOnly: FALSE  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=User,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2276  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 66  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch67"></a>Sch67.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Device-Registration-Service,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+delete: systemMustContain  \r
+systemMustContain: 1.2.840.113556.1.4.2265  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Drs-Farm-ID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: isDefunct  \r
+isDefunct: TRUE  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 67  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch68"></a>Sch68.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-User-Allowed-To-Authenticate-To,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-UserAllowedToAuthenticateTo  \r
+adminDisplayName: ms-DS-User-Allowed-To-Authenticate-To  \r
+adminDescription: This attribute is used to determine if a user has permission to authenticate to a service.  \r
+attributeId: 1.2.840.113556.1.4.2277  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: f6oM3k5yhkKxeRkmce/GZA==  \r
+systemFlags: 16  \r
+RangeLower: 0  \r
+RangeUpper: 132096  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-User-Allowed-To-Authenticate-From,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-UserAllowedToAuthenticateFrom  \r
+adminDisplayName: ms-DS-User-Allowed-To-Authenticate-From  \r
+adminDescription: This attribute is used to determine if a user has permission to authenticate from a computer.  \r
+attributeId: 1.2.840.113556.1.4.2278  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: AJZMLOGwfUSN2nSQIle9tQ==  \r
+systemFlags: 16  \r
+RangeLower: 0  \r
+RangeUpper: 132096  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-User-TGT-Lifetime,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-UserTGTLifetime  \r
+adminDisplayName: User TGT Lifetime  \r
+adminDescription: This attribute specifies the maximum age of a Kerberos TGT issued to a user in units of 10^(-7) seconds.  \r
+attributeId: 1.2.840.113556.1.4.2279  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: g8khhZn1D0K5q7EiK9+VwQ==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-Computer-Allowed-To-Authenticate-To,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ComputerAllowedToAuthenticateTo  \r
+adminDisplayName: ms-DS-Computer-Allowed-To-Authenticate-To  \r
+adminDescription: This attribute is used to determine if a computer has permission to authenticate to a service.  \r
+attributeId: 1.2.840.113556.1.4.2280  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 6atbEH4Hk0e5dO8EELYlcw==  \r
+systemFlags: 16  \r
+RangeLower: 0  \r
+RangeUpper: 132096  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-Computer-TGT-Lifetime,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ComputerTGTLifetime  \r
+adminDisplayName: Computer TGT Lifetime  \r
+adminDescription: This attribute specifies the maximum age of a Kerberos TGT issued to a computer in units of 10^(-7) seconds.  \r
+attributeId: 1.2.840.113556.1.4.2281  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: JHWTLrnfrEykNqW32mT9Zg==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-Service-Allowed-To-Authenticate-To,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ServiceAllowedToAuthenticateTo  \r
+adminDisplayName: ms-DS-Service-Allowed-To-Authenticate-To  \r
+adminDescription: This attribute is used to determine if a service has permission to authenticate to a service.  \r
+attributeId: 1.2.840.113556.1.4.2282  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: MTGX8k2bIEi03gR07zuEnw==  \r
+systemFlags: 16  \r
+RangeLower: 0  \r
+RangeUpper: 132096  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-Service-Allowed-To-Authenticate-From,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ServiceAllowedToAuthenticateFrom  \r
+adminDisplayName: ms-DS-Service-Allowed-To-Authenticate-From  \r
+adminDescription: This attribute is used to determine if a service has permission to authenticate from a computer.  \r
+attributeId: 1.2.840.113556.1.4.2283  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: mnDalxY3Zkmx0YOLpTw9iQ==  \r
+systemFlags: 16  \r
+RangeLower: 0  \r
+RangeUpper: 132096  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-Service-TGT-Lifetime,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ServiceTGTLifetime  \r
+adminDisplayName: Service TGT Lifetime  \r
+adminDescription: This attribute specifies the maximum age of a Kerberos TGT issued to a service in units of 10^(-7) seconds.  \r
+attributeId: 1.2.840.113556.1.4.2284  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: IDz+XSnKfUCbq4Qh5V63XA==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+  \r
+dn: CN=ms-DS-Assigned-AuthN-Policy-Silo,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AssignedAuthNPolicySilo  \r
+adminDisplayName: Assigned Authentication Policy Silo  \r
+adminDescription: This attribute specifies which AuthNPolicySilo a principal is assigned to.  \r
+attributeId: 1.2.840.113556.1.4.2285  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: QcE/svUN6kqzPWz0kwd7Pw==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2202  \r
+  \r
+dn: CN=ms-DS-Assigned-AuthN-Policy-Silo-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AssignedAuthNPolicySiloBL  \r
+adminDisplayName: Assigned Authentication Policy Silo Backlink  \r
+adminDescription: This attribute is the backlink for msDS-AssignedAuthNPolicySilo.  \r
+attributeId: 1.2.840.113556.1.4.2286  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: FAUUM3r10keOxATEZmYAxw==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2203  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy-Silo-Members,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AuthNPolicySiloMembers  \r
+adminDisplayName: Authentication Policy Silo Members  \r
+adminDescription: This attribute specifies which principals are assigned to the AuthNPolicySilo.  \r
+attributeId: 1.2.840.113556.1.4.2287  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: BR5NFqZIhkio6XeiAG48dw==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2204  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy-Silo-Members-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AuthNPolicySiloMembersBL  \r
+adminDisplayName: Authentication Policy Silo Members Backlink  \r
+adminDescription: This attribute is the backlink for msDS-AuthNPolicySiloMembers.  \r
+attributeId: 1.2.840.113556.1.4.2288  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: x8v8EeT7UUm0t63fb579RA==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2205  \r
+  \r
+dn: CN=ms-DS-User-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-UserAuthNPolicy  \r
+adminDisplayName: User Authentication Policy  \r
+adminDescription: This attribute specifies which AuthNPolicy should be applied to users assigned to this silo object.  \r
+attributeId: 1.2.840.113556.1.4.2289  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 87kmzRXUKkSPeHxhUj7pWw==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2206  \r
+  \r
+dn: CN=ms-DS-User-AuthN-Policy-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-UserAuthNPolicyBL  \r
+adminDisplayName: User Authentication Policy Backlink  \r
+adminDescription: This attribute is the backlink for msDS-UserAuthNPolicy.  \r
+attributeId: 1.2.840.113556.1.4.2290  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: qfoXL0ddH0uXfqpS+r5lyA==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2207  \r
+  \r
+dn: CN=ms-DS-Computer-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ComputerAuthNPolicy  \r
+adminDisplayName: Computer Authentication Policy  \r
+adminDescription: This attribute specifies which AuthNPolicy should be applied to computers assigned to this silo object.  \r
+attributeId: 1.2.840.113556.1.4.2291  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: yWO4r6O+D0Sp82FTzGaJKQ==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2208  \r
+  \r
+dn: CN=ms-DS-Computer-AuthN-Policy-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ComputerAuthNPolicyBL  \r
+adminDisplayName: Computer Authentication Policy Backlink  \r
+adminDescription: This attribute is the backlink for msDS-ComputerAuthNPolicy.  \r
+attributeId: 1.2.840.113556.1.4.2292  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: MmLvK6EwfkWGBHr22/ExuA==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2209  \r
+  \r
+dn: CN=ms-DS-Service-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ServiceAuthNPolicy  \r
+adminDisplayName: Service Authentication Policy  \r
+adminDescription: This attribute specifies which AuthNPolicy should be applied to services assigned to this silo object.  \r
+attributeId: 1.2.840.113556.1.4.2293  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: lW1qKs4o7km7JG0fwB4xEQ==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2210  \r
+  \r
+dn: CN=ms-DS-Service-AuthN-Policy-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ServiceAuthNPolicyBL  \r
+adminDisplayName: Service Authentication Policy Backlink  \r
+adminDescription: This attribute is the backlink for msDS-ServiceAuthNPolicy.  \r
+attributeId: 1.2.840.113556.1.4.2294  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 7CgRLKJao0KzLfCXnKn80g==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2211  \r
+  \r
+dn: CN=ms-DS-Assigned-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AssignedAuthNPolicy  \r
+adminDisplayName: Assigned Authentication Policy  \r
+adminDescription: This attribute specifies which AuthNPolicy should be applied to this principal.  \r
+attributeId: 1.2.840.113556.1.4.2295  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 2Ap6uPdUwUmEoOZNEoU1iA==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2212  \r
+  \r
+dn: CN=ms-DS-Assigned-AuthN-Policy-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AssignedAuthNPolicyBL  \r
+adminDisplayName: Assigned Authentication Policy Backlink  \r
+adminDescription: This attribute is the backlink for msDS-AssignedAuthNPolicy.  \r
+attributeId: 1.2.840.113556.1.4.2296  \r
+attributeSyntax: 2.5.5.1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: PBsTLZ/T7kqBXo20vBznrA==  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+linkID: 2213  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy-Enforced,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AuthNPolicyEnforced  \r
+adminDisplayName: Authentication Policy Enforced  \r
+adminDescription: This attribute specifies whether the authentication policy is enforced.  \r
+attributeId: 1.2.840.113556.1.4.2297  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: wgxWekXsukSy1yEjatWf1Q==  \r
+instanceType: 4  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy-Silo-Enforced,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AuthNPolicySiloEnforced  \r
+adminDisplayName: Authentication Policy Silo Enforced  \r
+adminDescription: This attribute specifies whether the authentication policy silo is enforced.  \r
+attributeId: 1.2.840.113556.1.4.2298  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: AhH18uBrPUmHJhVGzbyHcQ==  \r
+instanceType: 4  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy-Silos,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-AuthNPolicySilos  \r
+adminDisplayName: Authentication Policy Silos  \r
+adminDescription: A container of this class can contain authentication policy silo objects.  \r
+governsId: 1.2.840.113556.1.5.291  \r
+objectClassCategory: 1  \r
+rdnAttId: cn  \r
+schemaIdGuid:: Ckex0oSPHkmnUrQB7gD+XA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-AuthN-Policy-Silos,CN=Schema,CN=Configuration,DC=X  \r
+instanceType: 4  \r
+systemFlags: 16  \r
+subClassOf: top  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+  \r
+dn: CN=ms-DS-AuthN-Policies,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-AuthNPolicies  \r
+adminDisplayName: Authentication Policies  \r
+adminDescription: A container of this class can contain authentication policy objects.  \r
+governsId: 1.2.840.113556.1.5.293  \r
+objectClassCategory: 1  \r
+rdnAttId: cn  \r
+schemaIdGuid:: Xd+aOpd7fk+rtOW1XBwGtA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-AuthN-Policies,CN=Schema,CN=Configuration,DC=X  \r
+instanceType: 4  \r
+systemFlags: 16  \r
+subClassOf: top  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy-Silo,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-AuthNPolicySilo  \r
+adminDisplayName: Authentication Policy Silo  \r
+adminDescription: An instance of this class defines authentication policies and related behaviors for assigned users, computers, and services.  \r
+governsId: 1.2.840.113556.1.5.292  \r
+objectClassCategory: 1  \r
+rdnAttId: cn  \r
+schemaIdGuid:: Hkbw+X1piUaSmTfmHWF7DQ==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-AuthN-Policy-Silo,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+systemmaycontain: msDS-AuthNPolicySiloMembers  \r
+systemmaycontain: msDS-UserAuthNPolicy  \r
+systemmaycontain: msDS-ComputerAuthNPolicy  \r
+systemmaycontain: msDS-ServiceAuthNPolicy  \r
+systemmaycontain: msDS-AssignedAuthNPolicySiloBL  \r
+systemmaycontain: msDS-AuthNPolicySiloEnforced  \r
+subClassOf: top  \r
+systemPossSuperiors: msDS-AuthNPolicySilos  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-AuthNPolicy  \r
+adminDisplayName: Authentication Policy  \r
+adminDescription: An instance of this class defines authentication policy behaviors for assigned principals.  \r
+governsId: 1.2.840.113556.1.5.294  \r
+objectClassCategory: 1  \r
+rdnAttId: cn  \r
+schemaIdGuid:: VhFqq8dN9UCRgI5M5C/lzQ==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+instanceType: 4  \r
+systemmaycontain: msDS-UserAllowedToAuthenticateTo  \r
+systemmaycontain: msDS-UserAllowedToAuthenticateFrom  \r
+systemmaycontain: msDS-UserTGTLifetime  \r
+systemmaycontain: msDS-ComputerAllowedToAuthenticateTo  \r
+systemmaycontain: msDS-ComputerTGTLifetime  \r
+systemmaycontain: msDS-ServiceAllowedToAuthenticateTo  \r
+systemmaycontain: msDS-ServiceAllowedToAuthenticateFrom  \r
+systemmaycontain: msDS-ServiceTGTLifetime  \r
+systemmaycontain: msDS-UserAuthNPolicyBL  \r
+systemmaycontain: msDS-ComputerAuthNPolicyBL  \r
+systemmaycontain: msDS-ServiceAuthNPolicyBL  \r
+systemmaycontain: msDS-AssignedAuthNPolicyBL  \r
+systemmaycontain: msDS-AuthNPolicyEnforced  \r
+subClassOf: top  \r
+systemPossSuperiors: msDS-AuthNPolicies  \r
+  \r
+dn: CN=user,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add:  systemmaycontain  \r
+systemmaycontain: msDS-AssignedAuthNPolicy  \r
+systemmaycontain: msDS-AssignedAuthNPolicySilo  \r
+systemmaycontain: msDS-AuthNPolicySiloMembersBL  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 68  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch69"></a>Sch69.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-AuthN-Policy-Silo,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: defaultHidingValue  \r
+defaultHidingValue: FALSE  \r
+-  \r
+  \r
+dn: CN=ms-DS-AuthN-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: defaultHidingValue  \r
+defaultHidingValue: FALSE  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 69  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+```  \r
+  \r
+## <a name="BKMK_SchemaUpdates2012"></a>Schema Updates in Windows Server 2012  \r
+  \r
+### <a name="BKMK_Sch48"></a>Sch48.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Members-Of-Resource-Property-List,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-MembersOfResourcePropertyList  \r
+adminDisplayName: ms-DS-Members-Of-Resource-Property-List  \r
+adminDescription: For a resource property list object, this multi-valued link attribute points to one or more resource property objects.  \r
+attributeId: 1.2.840.113556.1.4.2103  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: ERw3Ta1MQUyK0rGAqyvRPA==  \r
+linkID: 2180  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Members-Of-Resource-Property-List-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-MembersOfResourcePropertyListBL  \r
+adminDisplayName: ms-DS-Members-Of-Resource-Property-List-BL  \r
+adminDescription: Backlink for ms-DS-Members-Of-Resource-Property-List. For a resource property object, this attribute references the resource property list object that it is a member of.  \r
+attributeId: 1.2.840.113556.1.4.2104  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: BLdpdLDtaEWlpVn0hix1pw==  \r
+linkID: 2181  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-Claim-Value-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimValueType  \r
+adminDisplayName: ms-DS-Claim-Value-Type  \r
+adminDescription: For a claim type object, specifies the value type of the claims issued.  \r
+attributeId: 1.2.840.113556.1.4.2098  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: uRdixo7k90e31WVSuK/WGQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Possible-Values,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimPossibleValues  \r
+adminDisplayName: ms-DS-Claim-Possible-Values  \r
+adminDescription: For a claim type or resource property object, this attribute describes the values suggested to a user when the he/she use the claim type or resource property in applications.  \r
+attributeId: 1.2.840.113556.1.4.2097  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 1048576  \r
+schemaIdGuid:: 7u0oLnztP0Wv5JO9hvIXTw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Attribute-Source,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimAttributeSource  \r
+adminDisplayName: ms-DS-Claim-Attribute-Source  \r
+adminDescription: For a claim type object, this attribute points to the attribute that will be used as the source for the claim type.  \r
+attributeId: 1.2.840.113556.1.4.2099  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: PhK87ua6ZkGeWymISot2sA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Type-Applies-To-Class,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimTypeAppliesToClass  \r
+adminDisplayName: ms-DS-Claim-Type-Applies-To-Class  \r
+adminDescription: For a claim type object, this linked attribute points to the AD security principal classes that for which claims should be issued. (For example, a link to the user class).  \r
+attributeId: 1.2.840.113556.1.4.2100  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: TA77anbYfEOutsPkFFTCcg==  \r
+linkID: 2176  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Shares-Possible-Values-With,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimSharesPossibleValuesWith  \r
+adminDisplayName: ms-DS-Claim-Shares-Possible-Values-With  \r
+adminDescription: For a resource property object, this attribute indicates that the suggested values of the claims issued are defined on the object that this linked attribute points to. Overrides ms-DS-Claim-Possible-Values on itself, if populated.  \r
+attributeId: 1.2.840.113556.1.4.2101  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: OtHIUgvOV0+JKxj1pDokAA==  \r
+linkID: 2178  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Shares-Possible-Values-With-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimSharesPossibleValuesWithBL  \r
+adminDisplayName: ms-DS-Claim-Shares-Possible-Values-With-BL  \r
+adminDescription: For a claim type object, this attribute indicates that the possible values described in ms-DS-Claim-Possible-Values are being referenced by other claim type objects.  \r
+attributeId: 1.2.840.113556.1.4.2102  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: 2yLVVJXs9UibvRiA67shgA==  \r
+linkID: 2179  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-Is-Used-As-Resource-Security-Attribute,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-IsUsedAsResourceSecurityAttribute  \r
+adminDisplayName: ms-DS-Is-Used-As-Resource-Security-Attribute  \r
+adminDescription: For a resource property, this attribute indicates whether it is being used as a secure attribute.  \r
+attributeId: 1.2.840.113556.1.4.2095  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: nfjJUTBHjUaitR1JMhLRfg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-KMS-Ids,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-KMSIds  \r
+adminDisplayName: ms-SPP-KMS-Ids  \r
+adminDescription: KMS IDs enabled by the Activation Object  \r
+attributeId: 1.2.840.113556.1.4.2082  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+rangeLower: 16  \r
+rangeUpper: 16  \r
+schemaIdGuid:: 2j5mm0I11kad8DFAJa8rrA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-CSVLK-Pid,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-CSVLKPid  \r
+adminDisplayName: ms-SPP-CSVLK-Pid  \r
+adminDescription: ID of CSVLK product-key used to create the Activation Object  \r
+attributeId: 1.2.840.113556.1.4.2105  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 512  \r
+schemaIdGuid:: DVF/tFBr4Ue1VncseeT/xA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-CSVLK-Sku-Id,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-CSVLKSkuId  \r
+adminDisplayName: ms-SPP-CSVLK-Sku-Id  \r
+adminDescription: SKU ID of CSVLK product-key used to create the Activation Object  \r
+attributeId: 1.2.840.113556.1.4.2081  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeLower: 16  \r
+rangeUpper: 16  \r
+schemaIdGuid:: OfeElnh7bUeNdDGtdpLu9A==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Phone-License,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-PhoneLicense  \r
+adminDisplayName: ms-SPP-Phone-License  \r
+adminDescription: License used during phone activation of the Active Directory forest  \r
+attributeId: 1.2.840.113556.1.4.2086  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 5242880  \r
+schemaIdGuid:: EtnkZ2LzUkCMeUL0W6eyIQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Config-License,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-ConfigLicense  \r
+adminDisplayName: ms-SPP-Config-License  \r
+adminDescription: Product-key configuration license used during online/phone activation of the Active Directory forest  \r
+attributeId: 1.2.840.113556.1.4.2087  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 5242880  \r
+schemaIdGuid:: tcRTA5nRsECzxd6zL9nsBg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Online-License,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-OnlineLicense  \r
+adminDisplayName: ms-SPP-Online-License  \r
+adminDescription: License used during online activation of the Active Directory forest  \r
+attributeId: 1.2.840.113556.1.4.2085  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 5242880  \r
+schemaIdGuid:: jjaPCRJIzUivt6E2uWgH7Q==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Confirmation-Id,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-ConfirmationId  \r
+adminDisplayName: ms-SPP-Confirmation-Id  \r
+adminDescription: Confirmation ID (CID) used for phone activation of the Active Directory forest  \r
+attributeId: 1.2.840.113556.1.4.2084  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 512  \r
+schemaIdGuid:: xJeHbtqsSUqHQLC9Bam4MQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Installation-Id,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-InstallationId  \r
+adminDisplayName: ms-SPP-Installation-Id  \r
+adminDescription: Installation ID (IID) used for phone activation of the Active Directory forest  \r
+attributeId: 1.2.840.113556.1.4.2083  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 512  \r
+schemaIdGuid:: FLG/aXtAOUeiE8ZjgCs+Nw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Issuance-License,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-IssuanceLicense  \r
+adminDisplayName: ms-SPP-Issuance-License  \r
+adminDescription: Issuance license used during online/phone activation of the Active Directory forest  \r
+attributeId: 1.2.840.113556.1.4.2088  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 5242880  \r
+schemaIdGuid:: obN1EK+70kmujcTyXIIzAw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-CSVLK-Partial-Product-Key,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msSPP-CSVLKPartialProductKey  \r
+adminDisplayName: ms-SPP-CSVLK-Partial-Product-Key  \r
+adminDescription: Last 5 characters of CSVLK product-key used to create the Activation Object  \r
+attributeId: 1.2.840.113556.1.4.2106  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeLower: 5  \r
+rangeUpper: 5  \r
+schemaIdGuid:: kbABplKGOkWzhoetI5t8CA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-TPM-Srk-Pub-Thumbprint,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msTPM-SrkPubThumbprint  \r
+adminDisplayName: TPM-SrkPubThumbprint  \r
+adminDescription: This attribute contains the thumbprint of the SrkPub corresponding to a particular TPM. This helps to index the TPM devices in the directory.  \r
+attributeId: 1.2.840.113556.1.4.2107  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 11  \r
+rangeUpper: 20  \r
+schemaIdGuid:: 6wbXGXZNokSF1hw0K+O+Nw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-TPM-Owner-Information-Temp,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msTPM-OwnerInformationTemp  \r
+adminDisplayName: TPM-OwnerInformationTemp  \r
+adminDescription: This attribute contains temporary owner information for a particular TPM.  \r
+attributeId: 1.2.840.113556.1.4.2108  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+rangeUpper: 128  \r
+schemaIdGuid:: nYCUyBO1+E+IEfT0P1rHvA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-TPM-Tpm-Information-For-Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msTPM-TpmInformationForComputer  \r
+adminDisplayName: TPM-TpmInformationForComputer  \r
+adminDescription: This attribute links a Computer object to a TPM object.  \r
+attributeId: 1.2.840.113556.1.4.2109  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 16  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: k3sb6khe1Ua8bE30/aeKNQ==  \r
+linkID: 2182  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-TPM-Tpm-Information-For-Computer-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msTPM-TpmInformationForComputerBL  \r
+adminDisplayName: TPM-TpmInformationForComputerBL  \r
+adminDescription: This attribute links a TPM object to the Computer objects associated with it.  \r
+attributeId: 1.2.840.113556.1.4.2110  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: yYT6FM2OSEO8kW087Ucqtw==  \r
+linkID: 2183  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Claim-Types,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ClaimTypes  \r
+adminDisplayName: ms-DS-Claim-Types  \r
+adminDescription: A container of this class can contain claim type objects.  \r
+governsId: 1.2.840.113556.1.5.270  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: NTIJNhXHIUirarVvsoBaWA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Claim-Types,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Resource-Property-List,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ResourcePropertyList  \r
+adminDisplayName: ms-DS-Resource-Property-List  \r
+adminDescription: An object of this class contains a list of resource properties.  \r
+governsId: 1.2.840.113556.1.5.274  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMayContain: 1.2.840.113556.1.4.2103  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: etTjckKzRU2PVrr/gDyr+Q==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Resource-Property-List,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Resource-Properties,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ResourceProperties  \r
+adminDisplayName: ms-DS-Resource-Properties  \r
+adminDescription: A container of this class can contain resource properties.  \r
+governsId: 1.2.840.113556.1.5.271  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: hEVKelCzj0es1rS4UtgswA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Resource-Properties,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Type-Property-Base,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ClaimTypePropertyBase  \r
+adminDisplayName: ms-DS-Claim-Type-Property-Base  \r
+adminDescription: An abstract class that defines the base class for claim type or resource property classes.  \r
+governsId: 1.2.840.113556.1.5.269  \r
+objectClassCategory: 2  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMayContain: 1.2.840.113556.1.4.2101  \r
+systemMayContain: 1.2.840.113556.1.2.557  \r
+systemMayContain: 1.2.840.113556.1.4.2097  \r
+schemaIdGuid:: WC9EuJDEh0SKndgLiDJxrQ==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Claim-Type-Property-Base,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Resource-Property,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ResourceProperty  \r
+adminDisplayName: ms-DS-Resource-Property  \r
+adminDescription: An instance of this class holds the definition of a property on resources.   \r
+governsId: 1.2.840.113556.1.5.273  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 1.2.840.113556.1.5.269  \r
+systemMayContain: 1.2.840.113556.1.4.2095  \r
+systemPossSuperiors: 1.2.840.113556.1.5.271  \r
+schemaIdGuid:: Xj0oWwSElUGTOYRQGIxQGg==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Resource-Property,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ClaimType  \r
+adminDisplayName: ms-DS-Claim-Type  \r
+adminDescription: An instance of this class holds the definition of a claim type that can be defined on security principals.  \r
+governsId: 1.2.840.113556.1.5.272  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 1.2.840.113556.1.5.269  \r
+systemMayContain: 1.2.840.113556.1.4.2100  \r
+systemMayContain: 1.2.840.113556.1.4.2099  \r
+systemPossSuperiors: 1.2.840.113556.1.5.270  \r
+schemaIdGuid:: fIWjgWlUj02q5sJ2mXYmBA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Claim-Type,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Activation-Objects-Container,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msSPP-ActivationObjectsContainer  \r
+adminDisplayName: ms-SPP-Activation-Objects-Container  \r
+adminDescription: Container for Activation Objects used by Active Directory based activation  \r
+governsId: 1.2.840.113556.1.5.266  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: K4YvtyW7XU2qUWLFm9+Qrg==  \r
+defaultSecurityDescriptor: O:BAG:BAD: (A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: FALSE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-SPP-Activation-Objects-Container,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-SPP-Activation-Object,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msSPP-ActivationObject  \r
+adminDisplayName: ms-SPP-Activation-Object  \r
+adminDescription: Activation Object used in Active Directory based activation  \r
+governsId: 1.2.840.113556.1.5.267  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMustContain: 1.2.840.113556.1.4.2082  \r
+systemMustContain: 1.2.840.113556.1.4.2081  \r
+systemMustContain: 1.2.840.113556.1.4.2106  \r
+systemMustContain: 1.2.840.113556.1.4.2105  \r
+systemMayContain: 1.2.840.113556.1.4.2088  \r
+systemMayContain: 1.2.840.113556.1.4.2087  \r
+systemMayContain: 1.2.840.113556.1.4.2086  \r
+systemMayContain: 1.2.840.113556.1.4.2085  \r
+systemMayContain: 1.2.840.113556.1.4.2084  \r
+systemMayContain: 1.2.840.113556.1.4.2083  \r
+systemPossSuperiors: 1.2.840.113556.1.5.266  \r
+schemaIdGuid:: jOagUcUNykOTXcHJEb8u5Q==  \r
+defaultSecurityDescriptor: O:BAG:BAD: (A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: FALSE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-SPP-Activation-Object,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-TPM-Information-Objects-Container,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msTPM-InformationObjectsContainer  \r
+adminDisplayName: TPM-InformationObjectsContainer  \r
+adminDescription: Container for TPM objects.  \r
+governsId: 1.2.840.113556.1.5.276  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMustContain: 2.5.4.3  \r
+systemPossSuperiors: 1.2.840.113556.1.5.67  \r
+systemPossSuperiors: 1.2.840.113556.1.5.66  \r
+schemaIdGuid:: vagn4FZk3kWQozhZOHfudA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;LOLCCCRP;;;DC)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-TPM-Information-Objects-Container,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-TPM-Information-Object,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msTPM-InformationObject  \r
+adminDisplayName: TPM-InformationObject  \r
+adminDescription: This class contains recovery information for a Trusted Platform Module (TPM) device.  \r
+governsId: 1.2.840.113556.1.5.275  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMustContain: 1.2.840.113556.1.4.1966  \r
+systemMayContain: 1.2.840.113556.1.4.2108  \r
+systemMayContain: 1.2.840.113556.1.4.2107  \r
+systemPossSuperiors: 1.2.840.113556.1.5.276  \r
+schemaIdGuid:: alsEhaZHQ0KnzGiQcB9mLA==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLO;;;DC)(A;;WP;;;CO)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-TPM-Information-Object,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=Top,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2102  \r
+systemMayContain: 1.2.840.113556.1.4.2104  \r
+-  \r
+  \r
+dn: CN=Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2109  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 48  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch49"></a>Sch49.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DNS-Is-Signed,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-IsSigned  \r
+adminDisplayName: ms-DNS-Is-Signed  \r
+adminDescription: An attribute used to define whether or not the DNS zone is signed.  \r
+attributeId: 1.2.840.113556.1.4.2130  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: TIUSqvzYXk2RyjaLjYKb7g==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-NSEC3-OptOut,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-NSEC3OptOut  \r
+adminDisplayName: ms-DNS-NSEC3-OptOut  \r
+adminDescription: An attribute used to define whether or not the DNS zone should be signed using NSEC opt-out.  \r
+attributeId: 1.2.840.113556.1.4.2132  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: iCDqe+KMPEKxkWbsUGsVlQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Signing-Keys,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-SigningKeys  \r
+adminDisplayName: ms-DNS-Signing-Keys  \r
+adminDescription: An attribute that contains the set of encrypted DNSSEC signing keys used by the DNS server to sign the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2144  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeUpper: 10000  \r
+schemaIdGuid:: bT5nt9nKnk6zGmPoCY/dYw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Sign-With-NSEC3,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-SignWithNSEC3  \r
+adminDisplayName: ms-DNS-Sign-With-NSEC3  \r
+adminDescription: An attribute used to define whether or not the DNS zone is signed with NSEC3.  \r
+attributeId: 1.2.840.113556.1.4.2131  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: mSGfx6Ft/0aSPB8/gAxyHg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-NSEC3-User-Salt,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-NSEC3UserSalt  \r
+adminDisplayName: ms-DNS-NSEC3-User-Salt  \r
+adminDescription: An attribute that defines a user-specified NSEC3 salt string to use when signing the DNS zone. If empty, random salt will be used.  \r
+attributeId: 1.2.840.113556.1.4.2148  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 510  \r
+schemaIdGuid:: cGfxryKWvE+hKDCId3YFuQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-DNSKEY-Records,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-DNSKEYRecords  \r
+adminDisplayName: ms-DNS-DNSKEY-Records  \r
+adminDescription: An attribute that contains the DNSKEY record set for the root of the DNS zone and the root key signing key signature records.  \r
+attributeId: 1.2.840.113556.1.4.2145  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeUpper: 10000  \r
+schemaIdGuid:: 9VjEKC1gyUqnfLPxvlA6fg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-DS-Record-Set-TTL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-DSRecordSetTTL  \r
+adminDisplayName: ms-DNS-DS-Record-Set-TTL  \r
+adminDescription: An attribute that defines the time-to-live (TTL) value assigned to DS records when signing the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2140  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 2592000  \r
+schemaIdGuid:: fJuGKcRk/kKX1fvC+hJBYA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Keymaster-Zones,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-KeymasterZones  \r
+adminDisplayName: ms-DNS-Keymaster-Zones  \r
+adminDescription: A list of Active Directory-integrated zones for which the DNS server is the keymaster.  \r
+attributeId: 1.2.840.113556.1.4.2128  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: O93gCxoEjEGs6S8X0j6dQg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-NSEC3-Iterations,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-NSEC3Iterations  \r
+adminDisplayName: ms-DNS-NSEC3-Iterations  \r
+adminDescription: An attribute that defines how many NSEC3 hash iterations to perform when signing the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2138  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 10000  \r
+schemaIdGuid:: qwq3gFmJwE6OkxJudt86yg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Propagation-Time,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-PropagationTime  \r
+adminDisplayName: ms-DNS-Propagation-Time  \r
+adminDescription: An attribute used to define in seconds the expected time required to propagate zone changes through Active Directory.  \r
+attributeId: 1.2.840.113556.1.4.2147  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: Rw00uoEhoEyi9vrkR52rKg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-NSEC3-Current-Salt,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-NSEC3CurrentSalt  \r
+adminDisplayName: ms-DNS-NSEC3-Current-Salt  \r
+adminDescription: An attribute that defines the current NSEC3 salt string being used to sign the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2149  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 510  \r
+schemaIdGuid:: MpR9ONGmdESCzQqJquCErg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-RFC5011-Key-Rollovers,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-RFC5011KeyRollovers  \r
+adminDisplayName: ms-DNS-RFC5011-Key-Rollovers  \r
+adminDescription: An attribute that defines whether or not the DNS zone should be maintained using key rollover procedures defined in RFC 5011.  \r
+attributeId: 1.2.840.113556.1.4.2135  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: QDzZJ1oGwEO92M3yx9Egqg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-NSEC3-Hash-Algorithm,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-NSEC3HashAlgorithm  \r
+adminDisplayName: ms-DNS-NSEC3-Hash-Algorithm  \r
+adminDescription: An attribute that defines the NSEC3 hash algorithm to use when signing the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2136  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: UlWe/7d9OEGIiAXOMgoDIw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-DS-Record-Algorithms,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-DSRecordAlgorithms  \r
+adminDisplayName: ms-DNS-DS-Record-Algorithms  \r
+adminDescription: An attribute used to define the algorithms used when writing the dsset file during zone signing.  \r
+attributeId: 1.2.840.113556.1.4.2134  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: 0npbXPogu0S+szS5wPZVeQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-DNSKEY-Record-Set-TTL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-DNSKEYRecordSetTTL  \r
+adminDisplayName: ms-DNS-DNSKEY-Record-Set-TTL  \r
+adminDescription: An attribute that defines the time-to-live (TTL) value assigned to DNSKEY records when signing the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2139  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 2592000  \r
+schemaIdGuid:: fzFOj9coLESm3x9JH5ezJg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Maintain-Trust-Anchor,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-MaintainTrustAnchor  \r
+adminDisplayName: ms-DNS-Maintain-Trust-Anchor  \r
+adminDescription: An attribute used to define the type of trust anchor to automatically publish in the forest-wide trust anchor store when the DNS zone is signed.  \r
+attributeId: 1.2.840.113556.1.4.2133  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: wWPADdlSVkSeFZwkNKr9lA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-NSEC3-Random-Salt-Length,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-NSEC3RandomSaltLength  \r
+adminDisplayName: ms-DNS-NSEC3-Random-Salt-Length  \r
+adminDescription: An attribute that defines the length in bytes of the random salt used when signing the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2137  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 255  \r
+schemaIdGuid:: ZRY2E2yR502lnbHrvQ3hKQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Signing-Key-Descriptors,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-SigningKeyDescriptors  \r
+adminDisplayName: ms-DNS-Signing-Key-Descriptors  \r
+adminDescription: An attribute that contains the set of DNSSEC Signing Key Descriptors (SKDs) used by the DNS server to generate keys and sign the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2143  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeUpper: 10000  \r
+schemaIdGuid:: zdhDNLblO0+wmGWaAhSgeQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Signature-Inception-Offset,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-SignatureInceptionOffset  \r
+adminDisplayName: ms-DNS-Signature-Inception-Offset  \r
+adminDescription: An attribute that defines in seconds how far in the past DNSSEC signature validity periods should begin when signing the DNS zone.  \r
+attributeId: 1.2.840.113556.1.4.2141  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 2592000  \r
+schemaIdGuid:: LsPUAxfiYUqWmXu8RymgJg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Parent-Has-Secure-Delegation,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-ParentHasSecureDelegation  \r
+adminDisplayName: ms-DNS-Parent-Has-Secure-Delegation  \r
+adminDescription: An attribute used to define whether the parental delegation to the DNS zone is secure.  \r
+attributeId: 1.2.840.113556.1.4.2146  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+schemaIdGuid:: ZGlcKBrBnkmW2L98daIjxg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DNS-Secure-Delegation-Polling-Period,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDNS-SecureDelegationPollingPeriod  \r
+adminDisplayName: ms-DNS-Secure-Delegation-Polling-Period  \r
+adminDescription: An attribute that defines in seconds the time between polling attempts for child zone key rollovers.  \r
+attributeId: 1.2.840.113556.1.4.2142  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 8  \r
+rangeLower: 0  \r
+rangeUpper: 2592000  \r
+schemaIdGuid:: vvCw9uSoaESP2cPEe4ci+Q==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Member-Rules-In-Central-Access-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-MemberRulesInCentralAccessPolicy  \r
+adminDisplayName: ms-Authz-Member-Rules-In-Central-Access-Policy  \r
+adminDescription: For a central access policy, this attribute identifies the central access rules that comprise the policy.  \r
+attributeId: 1.2.840.113556.1.4.2155  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: ei/yV343w0KYcs7G8h0uPg==  \r
+linkID: 2184  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Member-Rules-In-Central-Access-Policy-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-MemberRulesInCentralAccessPolicyBL  \r
+adminDisplayName: ms-Authz-Member-Rules-In-Central-Access-Policy-BL  \r
+adminDescription: Backlink for ms-Authz-Member-Rules-In-Central-Access-Policy. For a central access rule object, this attribute references one or more central access policies that point to it.  \r
+attributeId: 1.2.840.113556.1.4.2156  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: z2duUd3+lES7OrxQapSIkQ==  \r
+linkID: 2185  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-Claim-Source,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimSource  \r
+adminDisplayName: ms-DS-Claim-Source  \r
+adminDescription: For a claim type, this attribute indicates the source of the claim type. For example, the source can be certificate.  \r
+attributeId: 1.2.840.113556.1.4.2157  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: pvIy+ovy0Ee/kWY+j5EKcg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Proposed-Security-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-ProposedSecurityPolicy  \r
+adminDisplayName: ms-Authz-Proposed-Security-Policy  \r
+adminDescription: For a Central Access Policy Entry, defines the proposed security policy of the objects the CAPE is applied to.  \r
+attributeId: 1.2.840.113556.1.4.2151  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: zr5GubUJakuyWktjozDoDg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Source-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimSourceType  \r
+adminDisplayName: ms-DS-Claim-Source-Type  \r
+adminDescription: For a security principal claim type, lists the type of store the issued claim is sourced from  \r
+attributeId: 1.2.840.113556.1.4.2158  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: BZzxkvqNIkK70SxPAUh3VA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Effective-Security-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-EffectiveSecurityPolicy  \r
+adminDisplayName: ms-Authz-Security-Policy  \r
+adminDescription: For a central access rule, this attribute defines the permission that is applying to the target resources on the central access rule.  \r
+attributeId: 1.2.840.113556.1.4.2150  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: GRmDB5SPtk+KQpFUXcza0w==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Is-Single-Valued,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimIsSingleValued  \r
+adminDisplayName: ms-DS-Claim-Is-Single-Valued  \r
+adminDescription: For a claim type object, this attribute identifies if the claim type or resource property can only contain single value.  \r
+attributeId: 1.2.840.113556.1.4.2160  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: uZ94zbSWSEaCGco3gWGvOA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Last-Effective-Security-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-LastEffectiveSecurityPolicy  \r
+adminDisplayName: ms-Authz-Last-Effective-Security-Policy  \r
+adminDescription: For a Central Access Policy Entry, defines the security policy that was last applied to the objects the CAPE is applied to.  \r
+attributeId: 1.2.840.113556.1.4.2152  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: xoUWji8+okiljVrw6nifoA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Resource-Condition,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-ResourceCondition  \r
+adminDisplayName: ms-Authz-Resource-Condition  \r
+adminDescription: For a central access rule, this attribute is an expression that identifies the scope of the target resource to which the policy applies.  \r
+attributeId: 1.2.840.113556.1.4.2153  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: d3iZgHT4aEyGTW5QioO9vQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Is-Value-Space-Restricted,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ClaimIsValueSpaceRestricted  \r
+adminDisplayName: ms-DS-Claim-Is-Value-Space-Restricted  \r
+adminDescription: For a claim type, this attribute identifies whether a user can input values other than those described in the msDS-ClaimPossibleValues in applications.  \r
+attributeId: 1.2.840.113556.1.4.2159  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: x+QsDMPxgkSFeMYNS7dEIg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Central-Access-Policy-ID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msAuthz-CentralAccessPolicyID  \r
+adminDisplayName: ms-Authz-Central-Access-Policy-ID  \r
+adminDescription: For a Central Access Policy, this attribute defines a GUID that can be used to identify the set of policies when applied to a resource.  \r
+attributeId: 1.2.840.113556.1.4.2154  \r
+attributeSyntax: 2.5.5.17  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: YJvyYnS+MEaUVi9mkZk6hg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Generation-Id,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-GenerationId  \r
+adminDisplayName: ms-DS-Generation-Id  \r
+adminDescription: For virtual machine snapshot resuming detection. This attribute represents the VM Generation ID.  \r
+attributeId: 1.2.840.113556.1.4.2166  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+rangeLower: 16  \r
+rangeUpper: 16  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: PTldHreMT0uECpc7NswJww==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-Claim-Shares-Possible-Values-With,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: adminDescription  \r
+adminDescription: For a claim type object, indicates that the possible values of the claims issued are defined on the object this linked attribute points to; overrides msDS-ClaimPossibleValues, msDS-ClaimValueType, and msDS-ClaimIsValueSpaceRestricted, if populated.  \r
+-  \r
+replace: isSingleValued  \r
+isSingleValued: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DNS-Server-Settings,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDNS-ServerSettings  \r
+adminDisplayName: ms-DNS-Server-Settings  \r
+adminDescription: A container for storing DNS server settings.  \r
+governsId: 1.2.840.113556.1.4.2129  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMayContain: 1.2.840.113556.1.4.2128  \r
+systemPossSuperiors: 1.2.840.113556.1.5.17  \r
+schemaIdGuid:: 7cMv7xhuW0GZ5DEUqMsSSw==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLOLORCWOWDSDDTDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DNS-Server-Settings,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Central-Access-Policies,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msAuthz-CentralAccessPolicies  \r
+adminDisplayName: ms-Authz-Central-Access-Policies  \r
+adminDescription: A container of this class can contain Central Access Policy objects.  \r
+governsId: 1.2.840.113556.1.4.2161  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: wyFcVTahWkWTl3lrvTWOJQ==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-Authz-Central-Access-Policies,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Central-Access-Rules,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msAuthz-CentralAccessRules  \r
+adminDisplayName: ms-Authz-Central-Access-Rules  \r
+adminDescription: A container of this class can contain Central Access Policy Entry objects.  \r
+governsId: 1.2.840.113556.1.4.2162  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: ehu7mW1gi0+ADuFb5VTKjQ==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-Authz-Central-Access-Rules,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Central-Access-Rule,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msAuthz-CentralAccessRule  \r
+adminDisplayName: ms-Authz-Central-Access-Rule  \r
+adminDescription: A class that defines Central Access Rules used to construct a central access policy.  \r
+governsId: 1.2.840.113556.1.4.2163  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMayContain: 1.2.840.113556.1.4.2153  \r
+systemMayContain: 1.2.840.113556.1.4.2152  \r
+systemMayContain: 1.2.840.113556.1.4.2151  \r
+systemMayContain: 1.2.840.113556.1.4.2150  \r
+systemMayContain: 1.2.840.113556.1.2.557  \r
+systemPossSuperiors: 1.2.840.113556.1.4.2162  \r
+schemaIdGuid:: 3AZKWxwl206IEwvdcTJyJg==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-Authz-Central-Access-Rule,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Authz-Central-Access-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msAuthz-CentralAccessPolicy  \r
+adminDisplayName: ms-Authz-Central-Access-Policy  \r
+adminDescription: A class that defines Central Access Policy objects.  \r
+governsId: 1.2.840.113556.1.4.2164  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMayContain: 1.2.840.113556.1.4.2155  \r
+systemMayContain: 1.2.840.113556.1.4.2154  \r
+systemPossSuperiors: 1.2.840.113556.1.4.2161  \r
+schemaIdGuid:: sJxnpZ1vLEOLdR4+g08Cqg==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-Authz-Central-Access-Policy,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claim-Types,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultHidingValue  \r
+defaultHidingValue: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Resource-Properties,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultHidingValue  \r
+defaultHidingValue: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-List-Of-Claim-Types,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: defaultHidingValue  \r
+defaultHidingValue: TRUE  \r
+-  \r
+  \r
+dn: CN=ms-DS-Claim-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2157  \r
+systemMayContain: 1.2.840.113556.1.4.2158  \r
+systemMayContain: 1.2.840.113556.1.4.2098  \r
+systemMayContain: 1.2.840.113556.1.4.2159  \r
+systemMayContain: 1.2.840.113556.1.4.2160  \r
+-  \r
+  \r
+dn: CN=Dns-Zone,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2130  \r
+systemMayContain: 1.2.840.113556.1.4.2131  \r
+systemMayContain: 1.2.840.113556.1.4.2132  \r
+systemMayContain: 1.2.840.113556.1.4.2133  \r
+systemMayContain: 1.2.840.113556.1.4.2134  \r
+systemMayContain: 1.2.840.113556.1.4.2135  \r
+systemMayContain: 1.2.840.113556.1.4.2136  \r
+systemMayContain: 1.2.840.113556.1.4.2137  \r
+systemMayContain: 1.2.840.113556.1.4.2138  \r
+systemMayContain: 1.2.840.113556.1.4.2139  \r
+systemMayContain: 1.2.840.113556.1.4.2140  \r
+systemMayContain: 1.2.840.113556.1.4.2141  \r
+systemMayContain: 1.2.840.113556.1.4.2142  \r
+systemMayContain: 1.2.840.113556.1.4.2143  \r
+systemMayContain: 1.2.840.113556.1.4.2144  \r
+systemMayContain: 1.2.840.113556.1.4.2145  \r
+systemMayContain: 1.2.840.113556.1.4.2146  \r
+systemMayContain: 1.2.840.113556.1.4.2147  \r
+systemMayContain: 1.2.840.113556.1.4.2148  \r
+systemMayContain: 1.2.840.113556.1.4.2149  \r
+-  \r
+  \r
+dn: CN=Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2166  \r
+-  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=DS-Clone-Domain-Controller,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+displayName: Allow a DC to create a clone of itself  \r
+rightsGuid: 3e0f7e18-2c7a-4c10-ba82-4d926db99a3e  \r
+appliesTo: 19195a5b-6da0-11d0-afd3-00c04fd930c9  \r
+validAccesses: 256  \r
+localizationDisplayId: 80  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 49  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch50"></a>Sch50.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Allowed-To-Act-On-Behalf-Of-Other-Identity,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AllowedToActOnBehalfOfOtherIdentity  \r
+adminDisplayName: ms-DS-Allowed-To-Act-On-Behalf-Of-Other-Identity  \r
+adminDescription: This attribute is used for access checks to determine if a requester has permission to act on the behalf of other identities to services running as this account.  \r
+attributeId: 1.2.840.113556.1.4.2182  \r
+attributeSyntax: 2.5.5.15  \r
+omSyntax: 66  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+rangeLower: 0  \r
+rangeUpper: 132096  \r
+schemaIdGuid:: 5cN4P5r3vUaguJ0YEW3ceQ==  \r
+attributeSecurityGuid:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-Version,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-Version  \r
+adminDisplayName: ms-Kds-Version  \r
+adminDescription: Version number of this root key.  \r
+attributeId: 1.2.840.113556.1.4.2176  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+schemaIdGuid:: QHPw1bDmSh6Xvg0zGL2dsQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-DomainID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-DomainID  \r
+adminDisplayName: ms-Kds-DomainID  \r
+adminDescription: Distinguished name of the Domain Controller which generated this root key.  \r
+attributeId: 1.2.840.113556.1.4.2177  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: ggRAlgfPTOmQ6PLvxPBJXg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-KDF-Param,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-KDFParam  \r
+adminDisplayName: ms-Kds-KDF-Param  \r
+adminDescription: Parameters for the key derivation algorithm.  \r
+attributeId: 1.2.840.113556.1.4.2170  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+rangeUpper: 2000  \r
+schemaIdGuid:: cgeAirj0TxW0HC5Cce/3pw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-CreateTime,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-CreateTime  \r
+adminDisplayName: ms-Kds-CreateTime  \r
+adminDescription: The time when this root key was created.  \r
+attributeId: 1.2.840.113556.1.4.2179  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+schemaIdGuid:: nxEYrpBjRQCzLZfbxwGu9w==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-RootKeyData,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-RootKeyData  \r
+adminDisplayName: ms-Kds-RootKeyData  \r
+adminDescription: Root key.  \r
+attributeId: 1.2.840.113556.1.4.2175  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+rangeUpper: 128  \r
+schemaIdGuid:: J3xiJqIIQAqhsY3OhbQpkw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Primary-Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-PrimaryComputer  \r
+adminDisplayName: ms-DS-Primary-Computer  \r
+adminDescription: For a user or group object, identifies the primary computers.  \r
+attributeId: 1.2.840.113556.1.4.2167  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: 4vQ9obDb60yCi4suFD6egQ==  \r
+linkID: 2186  \r
+showInAdvancedViewOnly: TRUE  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-UseStartTime,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-UseStartTime  \r
+adminDisplayName: ms-Kds-UseStartTime  \r
+adminDescription: The time after which this root key may be used.  \r
+attributeId: 1.2.840.113556.1.4.2178  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+schemaIdGuid:: fwTcbCL1SreanNlayM39og==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Imaging-Hash-Algorithm,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msImaging-HashAlgorithm  \r
+adminDisplayName: ms-Imaging-Hash-Algorithm  \r
+adminDescription: Contains the name of the hash algorithm used to create the Thumbprint Hash for the Scan Repository/Secure Print Device.  \r
+attributeId: 1.2.840.113556.1.4.2181  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 64  \r
+schemaIdGuid:: tQ3nigZklkGS/vO7VXUgpw==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-KDF-AlgorithmID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-KDFAlgorithmID  \r
+adminDisplayName: ms-Kds-KDF-AlgorithmID  \r
+adminDescription: The algorithm name of the key derivation function used to compute keys.  \r
+attributeId: 1.2.840.113556.1.4.2169  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+rangeUpper: 200  \r
+schemaIdGuid:: skgs203RTuyfWK1XnYtEDg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Imaging-Thumbprint-Hash,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msImaging-ThumbprintHash  \r
+adminDisplayName: ms-Imaging-Thumbprint-Hash  \r
+adminDescription: Contains a hash of the security certificate for the Scan Repository/Secure Print Device.  \r
+attributeId: 1.2.840.113556.1.4.2180  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 1024  \r
+schemaIdGuid:: xdvfnAQDaUWV9sT2Y/5a5g==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-PublicKey-Length,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-PublicKeyLength  \r
+adminDisplayName: ms-Kds-PublicKey-Length  \r
+adminDescription: The length of the secret agreement public key.  \r
+attributeId: 1.2.840.113556.1.4.2173  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+schemaIdGuid:: cPQ44805SUWrW/afnlg/4A==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-PrivateKey-Length,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-PrivateKeyLength  \r
+adminDisplayName: ms-Kds-PrivateKey-Length  \r
+adminDescription: The length of the secret agreement private key.  \r
+attributeId: 1.2.840.113556.1.4.2174  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+schemaIdGuid:: oUJfYec3SBGg3TAH4Jz8gQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Is-Primary-Computer-For,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-IsPrimaryComputerFor  \r
+adminDisplayName: ms-DS-Is-Primary-Computer-For  \r
+adminDescription: Backlink atribute for msDS-IsPrimaryComputer.  \r
+attributeId: 1.2.840.113556.1.4.2168  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: rAaMmYc/TkSl3xGwPcilDA==  \r
+linkID: 2187  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-Kds-SecretAgreement-Param,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-SecretAgreementParam  \r
+adminDisplayName: ms-Kds-SecretAgreement-Param  \r
+adminDescription: The parameters for the secret agreement algorithm.  \r
+attributeId: 1.2.840.113556.1.4.2172  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+rangeUpper: 2000  \r
+schemaIdGuid:: MLCZ2e3+dUm4B+ukRNp56Q==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-SecretAgreement-AlgorithmID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msKds-SecretAgreementAlgorithmID  \r
+adminDisplayName: ms-Kds-SecretAgreement-AlgorithmID  \r
+adminDescription: The name of the secret agreement algorithm to be used with public keys.  \r
+attributeId: 1.2.840.113556.1.4.2171  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 640  \r
+rangeUpper: 200  \r
+schemaIdGuid:: XZcCF14iSsuxXQ2uqLXpkA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Value-Type-Reference,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ValueTypeReference  \r
+adminDisplayName: ms-DS-Value-Type-Reference  \r
+adminDescription: This attribute is used to link a resource property object to its value type.  \r
+attributeId: 1.2.840.113556.1.4.2187  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: hF38eNzBSDGJhFj3ktQdPg==  \r
+linkID: 2188  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Value-Type-Reference-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ValueTypeReferenceBL  \r
+adminDisplayName: ms-DS-Value-Type-Reference-BL  \r
+adminDescription: This is the back link for ms-DS-Value-Type-Reference. It links a value type object back to resource properties.  \r
+attributeId: 1.2.840.113556.1.4.2188  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: rUNVq6EjRTu5N5sxPVR0qA==  \r
+linkID: 2189  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-Is-Possible-Values-Present,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-IsPossibleValuesPresent  \r
+adminDisplayName: ms-DS-Is-Possible-Values-Present  \r
+adminDescription: This attribute identifies if ms-DS-Claim-Possible-Values on linked resource property must have value or must not have value.  \r
+attributeId: 1.2.840.113556.1.4.2186  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 2tyrb1OMTyCxpJ3wxnwetA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-Kds-Prov-RootKey,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msKds-ProvRootKey  \r
+adminDisplayName: ms-Kds-Prov-RootKey  \r
+adminDescription: Root keys for the Group Key Distribution Service.  \r
+governsId: 1.2.840.113556.1.5.278  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMustContain: 1.2.840.113556.1.4.2179  \r
+systemMustContain: 1.2.840.113556.1.4.2175  \r
+systemMustContain: 1.2.840.113556.1.4.2174  \r
+systemMustContain: 1.2.840.113556.1.4.2173  \r
+systemMustContain: 1.2.840.113556.1.4.2171  \r
+systemMustContain: 1.2.840.113556.1.4.2169  \r
+systemMustContain: 1.2.840.113556.1.4.2178  \r
+systemMustContain: 1.2.840.113556.1.4.2177  \r
+systemMustContain: 1.2.840.113556.1.4.2176  \r
+systemMustContain: 2.5.4.3  \r
+systemMayContain: 1.2.840.113556.1.4.2172  \r
+systemMayContain: 1.2.840.113556.1.4.2170  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: Qf0CquAXGE+Gh7Ijlklzaw==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-Kds-Prov-RootKey,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-Kds-Prov-ServerConfiguration,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msKds-ProvServerConfiguration  \r
+adminDisplayName: ms-Kds-Prov-ServerConfiguration  \r
+adminDescription: Configuration for the Group Key Distribution Service.  \r
+governsId: 1.2.840.113556.1.5.277  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMustContain: 1.2.840.113556.1.4.2176  \r
+systemMayContain: 1.2.840.113556.1.4.2174  \r
+systemMayContain: 1.2.840.113556.1.4.2173  \r
+systemMayContain: 1.2.840.113556.1.4.2172  \r
+systemMayContain: 1.2.840.113556.1.4.2171  \r
+systemMayContain: 1.2.840.113556.1.4.2170  \r
+systemMayContain: 1.2.840.113556.1.4.2169  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: qEPyXiUqpkWLcwinGuZ3zg==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-Kds-Prov-ServerConfiguration,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=Top,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2168  \r
+systemMayContain: 1.2.840.113556.1.4.2188  \r
+-  \r
+  \r
+dn: CN=Group,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2167  \r
+-  \r
+  \r
+dn: CN=User,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2167  \r
+-  \r
+  \r
+dn: CN=Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2180  \r
+systemMayContain: 1.2.840.113556.1.4.2181  \r
+-  \r
+  \r
+dn: CN=Organizational-Person,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2182  \r
+-  \r
+  \r
+dn: CN=ms-DS-Resource-Property,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMustContain  \r
+systemMustContain: 1.2.840.113556.1.4.2187  \r
+-  \r
+  \r
+dn: CN=ms-DS-Value-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ValueType  \r
+adminDisplayName: ms-DS-Value-Type  \r
+adminDescription: An value type object holds value type information for a resource property.  \r
+governsId: 1.2.840.113556.1.5.279  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMustContain: 1.2.840.113556.1.4.2186  \r
+systemMustContain: 1.2.840.113556.1.4.2160  \r
+systemMustContain: 1.2.840.113556.1.4.2159  \r
+systemMustContain: 1.2.840.113556.1.4.2098  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: 33/C4x2wTk+H5wVu7w65Ig==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Value-Type,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Validated-MS-DS-Behavior-Version,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+rightsGuid: d31a8757-2447-4545-8081-3bb610cacbf2  \r
+appliesTo: f0f8ffab-1191-11d0-a060-00aa006c33ed  \r
+displayName: Validated write to MS DS behavior version  \r
+localizationDisplayId: 81  \r
+validAccesses: 8  \r
+showInAdvancedViewOnly: TRUE  \r
+  \r
+dn: CN=Validated-MS-DS-Additional-DNS-Host-Name,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+rightsGuid: 80863791-dbe9-4eb8-837e-7f0ab55d9ac7  \r
+appliesTo: bf967a86-0de6-11d0-a285-00aa003049e2  \r
+displayName: Validated write to MS DS Additional DNS Host Name  \r
+localizationDisplayId: 82  \r
+validAccesses: 8  \r
+showInAdvancedViewOnly: TRUE  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 50  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch51"></a>Sch51.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-Transformation-Rules,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-TransformationRules  \r
+adminDisplayName: ms-DS-Transformation-Rules  \r
+adminDescription: Specifies the Transformation Rules for Across-Forest Claims Transformation.  \r
+attributeId: 1.2.840.113556.1.4.2189  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: cSuHVbLESDuuUUCV+R7GAA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Applies-To-Resource-Types,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-AppliesToResourceTypes  \r
+adminDisplayName: ms-DS-Applies-To-Resource-Types  \r
+adminDescription: For a resource property, this attribute indicates what resource types this resource property applies to.  \r
+attributeId: 1.2.840.113556.1.4.2195  \r
+attributeSyntax: 2.5.5.12  \r
+omSyntax: 64  \r
+isSingleValued: FALSE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: BiA/aWRXSj2EOVjwSqtLWQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Transformation-Rules-Compiled,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-TransformationRulesCompiled  \r
+adminDisplayName: ms-DS-Transformation-Rules-Compiled  \r
+adminDescription: Blob containing compiled transformation rules.  \r
+attributeId: 1.2.840.113556.1.4.2190  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 128  \r
+schemaIdGuid:: EJq0C2tTTbyicwurDdS9EA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-Egress-Claims-Transformation-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-EgressClaimsTransformationPolicy  \r
+adminDisplayName: ms-DS-Egress-Claims-Transformation-Policy  \r
+adminDescription: This is a link to a Claims Transformation Policy Object for the egress claims (claims leaving this forest) to the Trusted Domain. This is applicable only for an incoming or bidirectional Across-Forest Trust. When this link is not present, all claims are allowed to egress as-is.  \r
+attributeId: 1.2.840.113556.1.4.2192  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: fkI3wXOaQLCRkBsJW7QyiA==  \r
+linkID: 2192  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Ingress-Claims-Transformation-Policy,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-IngressClaimsTransformationPolicy  \r
+adminDisplayName: ms-DS-Ingress-Claims-Transformation-Policy  \r
+adminDescription: This is a link to a Claims Transformation Policy Object for the ingress claims (claims entering this forest) from the Trusted Domain. This is applicable only for an outgoing or bidirectional Across-Forest Trust. If this link is absent, all the ingress claims are dropped.  \r
+attributeId: 1.2.840.113556.1.4.2191  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: CEwohm4MQBWLFXUUfSPSDQ==  \r
+linkID: 2190  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-TDO-Egress-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-TDOEgressBL  \r
+adminDisplayName: ms-DS-TDO-Egress-BL  \r
+adminDescription: Backlink to TDO Egress rules link on object.  \r
+attributeId: 1.2.840.113556.1.4.2194  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: KWIA1ROZQiKLF4N2HR4OWw==  \r
+linkID: 2193  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-TDO-Ingress-BL,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-TDOIngressBL  \r
+adminDisplayName: ms-DS-TDO-Ingress-BL  \r
+adminDescription: Backlink to TDO Ingress rules link on object.  \r
+attributeId: 1.2.840.113556.1.4.2193  \r
+attributeSyntax: 2.5.5.1  \r
+omSyntax: 127  \r
+isSingleValued: FALSE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+omObjectClass:: KwwCh3McAIVK  \r
+schemaIdGuid:: oWFWWsaXS1SAVuQw/nvFVA==  \r
+linkID: 2191  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 17  \r
+  \r
+dn: CN=ms-DS-ManagedPassword,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ManagedPassword  \r
+adminDisplayName: msDS-ManagedPassword  \r
+adminDescription: This attribute is the managed password data for a group MSA.  \r
+attributeId: 1.2.840.113556.1.4.2196  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+schemaIdGuid:: hu1i4yi3QgiyfS3qep3yGA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 20  \r
+  \r
+dn: CN=ms-DS-ManagedPasswordId,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ManagedPasswordId  \r
+adminDisplayName: msDS-ManagedPasswordId  \r
+adminDescription: This attribute is the identifier for the current managed password data for a group MSA.  \r
+attributeId: 1.2.840.113556.1.4.2197  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+rangeUpper: 1024  \r
+schemaIdGuid:: Wil4DtPGQAq0kdYiUf+gpg==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-GroupMSAMembership,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-GroupMSAMembership  \r
+adminDisplayName: msDS-GroupMSAMembership  \r
+adminDescription: This attribute is used for access checks to determine if a requester has permission to retrieve the password for a group MSA.  \r
+attributeId: 1.2.840.113556.1.4.2200  \r
+attributeSyntax: 2.5.5.15  \r
+omSyntax: 66  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 0  \r
+rangeUpper: 132096  \r
+schemaIdGuid:: 1u2OiATOQN+0YrilDkG6OA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-GeoCoordinates-Altitude,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-GeoCoordinatesAltitude  \r
+adminDisplayName: ms-DS-GeoCoordinates-Altitude  \r
+adminDescription: ms-DS-GeoCoordinates-Altitude  \r
+attributeId: 1.2.840.113556.1.4.2183  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+searchFlags: 1  \r
+schemaIdGuid:: twMXoUFWnE2GPl+zMl504A==  \r
+attributeSecurityGuid:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-GeoCoordinates-Latitude,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-GeoCoordinatesLatitude  \r
+adminDisplayName: ms-DS-GeoCoordinates-Latitude  \r
+adminDescription: ms-DS-GeoCoordinates-Latitude  \r
+attributeId: 1.2.840.113556.1.4.2184  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+searchFlags: 1  \r
+schemaIdGuid:: TtRm3EM99UCFxTwS4WmSfg==  \r
+attributeSecurityGuid:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-GeoCoordinates-Longitude,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-GeoCoordinatesLongitude  \r
+adminDisplayName: ms-DS-GeoCoordinates-Longitude  \r
+adminDescription: ms-DS-GeoCoordinates-Longitude  \r
+attributeId: 1.2.840.113556.1.4.2185  \r
+attributeSyntax: 2.5.5.16  \r
+omSyntax: 65  \r
+isSingleValued: TRUE  \r
+searchFlags: 1  \r
+schemaIdGuid:: ECHElOS66kyFd6+BOvXaJQ==  \r
+attributeSecurityGuid:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-ManagedPasswordInterval,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ManagedPasswordInterval  \r
+adminDisplayName: msDS-ManagedPasswordInterval  \r
+adminDescription: This attribute is used to retrieve the number of days before a managed password is automatically changed for a group MSA.  \r
+attributeId: 1.2.840.113556.1.4.2199  \r
+attributeSyntax: 2.5.5.9  \r
+omSyntax: 2  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaIdGuid:: 9451+HasQ4ii7qJrTcr0CQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-ManagedPasswordPreviousId,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-ManagedPasswordPreviousId  \r
+adminDisplayName: msDS-ManagedPasswordPreviousId  \r
+adminDescription: This attribute is the identifier for the previous managed password data for a group MSA.  \r
+attributeId: 1.2.840.113556.1.4.2198  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+rangeUpper: 1024  \r
+schemaIdGuid:: MSHW0EotT9CZ2RxjZGIppA==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=ms-DS-Claims-Transformation-Policies,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ClaimsTransformationPolicies  \r
+adminDisplayName: ms-DS-Claims-Transformation-Policies  \r
+adminDescription: An object of this class holds the one set of Claims Transformation Policy for Across-Forest Claims Transformation.  \r
+governsId: 1.2.840.113556.1.5.281  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+schemaIdGuid:: san8yIh9T7uCekSJJ3EHYg==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Claims-Transformation-Policies,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Claims-Transformation-Policy-Type,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-ClaimsTransformationPolicyType  \r
+adminDisplayName: ms-DS-Claims-Transformation-Policy-Type  \r
+adminDescription: An object of this class holds the one set of Claims Transformation Policy for Across-Forest Claims Transformation.  \r
+governsId: 1.2.840.113556.1.5.280  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+systemMayContain: 1.2.840.113556.1.4.2190  \r
+systemMayContain: 1.2.840.113556.1.4.2189  \r
+systemPossSuperiors: 1.2.840.113556.1.5.281  \r
+schemaIdGuid:: s2LrLnMTRf6BATh/Fnbtxw==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;EA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Claims-Transformation-Policy-Type,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=Top,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2193  \r
+systemMayContain: 1.2.840.113556.1.4.2194  \r
+-  \r
+  \r
+dn: CN=Trusted-Domain,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2191  \r
+systemMayContain: 1.2.840.113556.1.4.2192  \r
+-  \r
+  \r
+dn: CN=ms-DS-Resource-Property,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2195  \r
+-  \r
+  \r
+dn: CN=Mail-Recipient,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: mayContain  \r
+mayContain: 1.2.840.113556.1.4.2183  \r
+mayContain: 1.2.840.113556.1.4.2184  \r
+mayContain: 1.2.840.113556.1.4.2185  \r
+-  \r
+  \r
+dn: CN=ms-DS-Group-Managed-Service-Account,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-GroupManagedServiceAccount  \r
+adminDisplayName: msDS-Group-Managed-Service-Account  \r
+adminDescription: The group managed service account class is used to create an account which can be shared by different computers to run Windows services.  \r
+governsId: 1.2.840.113556.1.5.282  \r
+objectClassCategory: 1  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 1.2.840.113556.1.3.30  \r
+systemMustContain: 1.2.840.113556.1.4.2199  \r
+systemMayContain: 1.2.840.113556.1.4.2200  \r
+systemMayContain: 1.2.840.113556.1.4.2198  \r
+systemMayContain: 1.2.840.113556.1.4.2197  \r
+systemMayContain: 1.2.840.113556.1.4.2196  \r
+systemPossSuperiors: 1.2.840.113556.1.3.30  \r
+systemPossSuperiors: 1.2.840.113556.1.3.23  \r
+systemPossSuperiors: 2.5.6.5  \r
+systemPossSuperiors: 1.2.840.113556.1.5.67  \r
+schemaIdGuid:: ilWLe6WT90qtysAX5n8QVw==  \r
+defaultSecurityDescriptor: D:(OD;;CR;00299570-246d-11d0-a768-00aa006e0529;;WD)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;AO)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPCRLCLORCSDDT;;;CO)(OA;;WP;4c164200-20c0-11d0-a768-00aa006e0529;;CO)(OA;;SW;72e39547-7b18-11d1-adef-00c04fd8d5cd;;CO)(OA;;SW;f3a64788-5306-11d1-a9c5-0000f80367c1;;CO)(OA;;WP;3e0abfd0-126a-11d0-a060-00aa006c33ed;bf967a86-0de6-11d0-a285-00aa003049e2;CO)(OA;;WP;5f202010-79a5-11d0-9020-00c04fc2d4cf;bf967a86-0de6-11d0-a285-00aa003049e2;CO)(OA;;WP;bf967950-0de6-11d0-a285-00aa003049e2;bf967a86-0de6-11d0-a285-00aa003049e2;CO)(OA;;WP;bf967953-0de6-11d0-a285-00aa003049e2;bf967a86-0de6-11d0-a285-00aa003049e2;CO)(OA;;SW;f3a64788-5306-11d1-a9c5-0000f80367c1;;PS)(OA;;RPWP;77B5B886-944A-11d1-AEBD-0000F80367C1;;PS)(OA;;SW;72e39547-7b18-11d1-adef-00c04fd8d5cd;;PS)(A;;RPLCLORC;;;AU)(OA;;RPWP;bf967a7f-0de6-11d0-a285-00aa003049e2;;CA)(OA;;RP;46a9b11d-60ae-405a-b7e8-ff8a58d456d2;;S-1-5-32-560)(OA;;RP;e362ed86-b728-0842-b27d-2dea7a9df218;;WD)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: FALSE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Group-Managed-Service-Account,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 51  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch52"></a>Sch52.ldf  \r
+  \r
+```  \r
+dn: CN=ms-DS-RID-Pool-Allocation-Enabled,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+ldapDisplayName: msDS-RIDPoolAllocationEnabled  \r
+adminDisplayName: ms-DS-RID-Pool-Allocation-Enabled  \r
+adminDescription: This attribute indicates whether RID pool allocation is enabled or not.  \r
+attributeId: 1.2.840.113556.1.4.2213  \r
+attributeSyntax: 2.5.5.8  \r
+omSyntax: 1  \r
+instanceType: 4  \r
+isSingleValued: TRUE  \r
+systemOnly: TRUE  \r
+searchFlags: 0  \r
+schemaFlagsEx: 1  \r
+schemaIdGuid:: jHyXJLfBQDO09is3XrcR1w==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=RID-Set-References,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: searchFlags  \r
+searchFlags: 8  \r
+-  \r
+  \r
+dn: CN=Netboot-DUID,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: Netboot-DUID  \r
+ldapDisplayName: netbootDUID  \r
+adminDisplayName: Netboot-DUID  \r
+adminDescription: This attribute is used to store DHCPv6 DUID device ID.  \r
+attributeId: 1.2.840.113556.1.4.2234  \r
+attributeSyntax: 2.5.5.10  \r
+omSyntax: 4  \r
+instanceType: 4  \r
+isSingleValued: TRUE  \r
+searchFlags: 1  \r
+systemFlags: 16  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+systemOnly: FALSE  \r
+rangeLower: 2  \r
+rangeUpper: 128  \r
+schemaIdGuid:: vXAlU3c9T0KCLw1jbcbarQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+  \r
+dn:  \r
+changetype: modify  \r
+add: schemaUpdateNow  \r
+schemaUpdateNow: 1  \r
+-  \r
+  \r
+dn: CN=RID-Manager,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2213  \r
+-  \r
+  \r
+dn: CN=domainDNS-Display,CN=409,CN=DisplaySpecifiers,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: adminContextMenu  \r
+adminContextMenu: 3,{2fb1b669-59ea-4f64-b728-05309f2c11c8}  \r
+-  \r
+  \r
+dn: CN=computer-Display,CN=409,CN=DisplaySpecifiers,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: adminPropertyPages  \r
+adminPropertyPages: 13,{2fb1b669-59ea-4f64-b728-05309f2c11c8}  \r
+-  \r
+  \r
+dn: CN=Certificate-AutoEnrollment,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: controlAccessRight  \r
+showInAdvancedViewOnly: TRUE  \r
+appliesTo: e5209ca2-3bba-11d2-90cc-00c04fd91ab1  \r
+displayname: AutoEnrollment  \r
+localizationDisplayId: 83  \r
+rightsGuid: a05b8cc2-17bc-4802-a710-e7c15ab866a2  \r
+validAccesses: 256  \r
+  \r
+# Update element: computer  \r
+dn: CN=Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: mayContain  \r
+mayContain: 1.2.840.113556.1.4.2234  \r
+-  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute1,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute1  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute1  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute1  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2214  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: r+oJl9pJsk2QigRG5eq4RA==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute2,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute2  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute2  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute2  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2215  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: rOBO88HAqUuCyRqQdS8WpQ==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute3,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute3  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute3  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute3  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2216  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: Gsj2gtr6DUqw93BtRoOOtQ==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute4,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute4  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute4  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute4  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2217  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: NzS/nG5OW0iykSKwJVQnPw==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute5,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute5  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute5  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute5  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2218  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: W+gVKUfjUkiquyLlplHIZA==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute6,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute6  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute6  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute6  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2219  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: eSZFYOEo7Eus43EoMzYUVg==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute7,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute7  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute7  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute7  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2220  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: GRN8Sk7jwkCdAGD/eJDyBw==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute8,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute8  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute8  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute8  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2221  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: FMXRPEmEykSBwAIXgYANKg==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute9,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute9  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute9  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute9  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2222  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: LOFjCkAwQUSuJs2Vrw0kfg==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute10,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute10  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute10  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute10  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2223  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: s/wKZ70T/EeQswpSftgatw==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute11,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute11  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute11  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute11  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2224  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: yLuenqV9pkKJJSROEqVuJA==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute12,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute12  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute12  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute12  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2225  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: PcQBPAvhyk+Sskz2FdWwmg==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute13,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute13  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute13  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute13  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2226  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: S0a+KJCreUumsN9DdDHQNg==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute14,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute14  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute14  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute14  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2227  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: ura8zoBuJ0mFYJj+yghqnw==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute15,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute15  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute15  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute15  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2228  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: N9XkqvCKqk2cxmLq24T/Aw==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute16,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute16  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute16  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute16  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2229  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: WyGBlZZRU0ChHm/8r8YsTQ==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute17,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute17  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute17  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute17  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2230  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: 2m08PehrKUKWfi/1u5O0zg==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute18,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute18  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute18  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute18  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2231  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: NDvniKYKaUSYQm6wGzKltQ==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute19,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute19  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute19  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute19  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2232  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: mf51CQeWikaOGMgA0zhzlQ==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-cloudExtensionAttribute20,CN=Schema,CN=Configuration,dc=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: attributeSchema  \r
+cn: ms-DS-cloudExtensionAttribute20  \r
+lDAPDisplayName: msDS-cloudExtensionAttribute20  \r
+adminDisplayName: ms-DS-cloudExtensionAttribute20  \r
+adminDescription: An attribute used to house an arbitrary cloud-relevant string  \r
+attributeID: 1.2.840.113556.1.4.2233  \r
+attributeSyntax: 2.5.5.12  \r
+oMSyntax: 64  \r
+isSingleValued: TRUE  \r
+systemOnly: FALSE  \r
+searchFlags: 1  \r
+isMemberOfPartialAttributeSet: TRUE  \r
+schemaIDGUID:: KGNE9W6LjUmVqCEXSNWs3A==  \r
+attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ==  \r
+showInAdvancedViewOnly: TRUE  \r
+systemFlags: 16  \r
+  \r
+dn: CN=ms-DS-Cloud-Extensions,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaAdd  \r
+objectClass: classSchema  \r
+ldapDisplayName: msDS-CloudExtensions  \r
+adminDisplayName: ms-DS-Cloud-Extensions  \r
+adminDescription: A collection of attributes used to house arbitrary cloud-relevant strings.  \r
+governsId: 1.2.840.113556.1.5.283  \r
+objectClassCategory: 3  \r
+rdnAttId: 2.5.4.3  \r
+subClassOf: 2.5.6.0  \r
+MayContain: 1.2.840.113556.1.4.2214  \r
+MayContain: 1.2.840.113556.1.4.2215  \r
+MayContain: 1.2.840.113556.1.4.2216  \r
+MayContain: 1.2.840.113556.1.4.2217  \r
+MayContain: 1.2.840.113556.1.4.2218  \r
+MayContain: 1.2.840.113556.1.4.2219  \r
+MayContain: 1.2.840.113556.1.4.2220  \r
+MayContain: 1.2.840.113556.1.4.2221  \r
+MayContain: 1.2.840.113556.1.4.2222  \r
+MayContain: 1.2.840.113556.1.4.2223  \r
+MayContain: 1.2.840.113556.1.4.2224  \r
+MayContain: 1.2.840.113556.1.4.2225  \r
+MayContain: 1.2.840.113556.1.4.2226  \r
+MayContain: 1.2.840.113556.1.4.2227  \r
+MayContain: 1.2.840.113556.1.4.2228  \r
+MayContain: 1.2.840.113556.1.4.2229  \r
+MayContain: 1.2.840.113556.1.4.2230  \r
+MayContain: 1.2.840.113556.1.4.2231  \r
+MayContain: 1.2.840.113556.1.4.2232  \r
+MayContain: 1.2.840.113556.1.4.2233  \r
+schemaIdGuid:: pIceZCaDcUe6LccG3zXjWg==  \r
+defaultSecurityDescriptor: D:(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;DA)(A;;RPWPCRCCDCLCLORCWOWDSDDTSW;;;SY)(A;;RPLCLORC;;;AU)  \r
+showInAdvancedViewOnly: TRUE  \r
+defaultHidingValue: TRUE  \r
+systemOnly: FALSE  \r
+defaultObjectCategory: CN=ms-DS-Cloud-Extensions,CN=Schema,CN=Configuration,DC=X  \r
+systemFlags: 16  \r
+  \r
+dn: CN=User,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemAuxiliaryClass  \r
+systemAuxiliaryClass: 1.2.840.113556.1.5.283  \r
+-  \r
+  \r
+dn: CN=Personal-Information,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: appliesTo  \r
+appliesTo: 641E87A4-8326-4771-BA2D-C706DF35E35A  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 52  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch53"></a>Sch53.ldf  \r
+  \r
+```  \r
+dn: CN=ms-Authz-Central-Access-Rule,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2156  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 53  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch54"></a>Sch54.ldf  \r
+  \r
+```  \r
+dn: CN=User-Account-Restrictions,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: appliesTo  \r
+appliesTo: 7b8b558a-93a5-4af7-adca-c017e67f1057  \r
+-  \r
+  \r
+dn: CN=ms-DS-Allowed-To-Act-On-Behalf-Of-Other-Identity,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+replace: attributeSecurityGuid  \r
+attributeSecurityGuid:: AEIWTMAg0BGnaACqAG4FKQ==  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 54  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch55"></a>Sch55.ldf  \r
+  \r
+```  \r
+dn: CN=DNS-Host-Name-Attributes,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: appliesTo  \r
+appliesTo: 7b8b558a-93a5-4af7-adca-c017e67f1057  \r
+-  \r
+  \r
+dn: CN=Validated-DNS-Host-Name,CN=Extended-Rights,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: appliesTo  \r
+appliesTo: 7b8b558a-93a5-4af7-adca-c017e67f1057  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 55  \r
+-  \r
+```  \r
+  \r
+### <a name="BKMK_Sch56"></a>Sch56.ldf  \r
+  \r
+```  \r
+# Update element: computer. Remove netboot-DUID from mayContain  \r
+dn: CN=Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+delete: mayContain  \r
+mayContain: 1.2.840.113556.1.4.2234  \r
+-  \r
+  \r
+# Update element: computer. Add netboot-DUID to SystemMayContain  \r
+dn: CN=Computer,CN=Schema,CN=Configuration,DC=X  \r
+changetype: ntdsSchemaModify  \r
+add: systemMayContain  \r
+systemMayContain: 1.2.840.113556.1.4.2234  \r
+-  \r
+  \r
+dn: CN=Schema,CN=Configuration,DC=X  \r
+changeType: ntdsSchemaModify  \r
+replace: objectVersion  \r
+objectVersion: 56  \r
+-  \r
+```  \r
+  \r
+\r
+\r
index 2717986aa086f3a3581916f406915b9abf0a094b..6c60d7ad50b06627c46fadb5b30e85089633be6b 100644 (file)
@@ -2,6 +2,9 @@
 
 bld.INSTALL_WILDCARD('${SETUPDIR}', 'ad-schema/*.txt')
 bld.INSTALL_WILDCARD('${SETUPDIR}', 'display-specifiers/*.txt')
+bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/*.ldf')
+bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/WindowsServerDocs/Schema-Updates.md')
+bld.INSTALL_WILDCARD('${SETUPDIR}', 'adprep/WindowsServerDocs/*.diff')
 
 bld.INSTALL_FILES('${SETUPDIR}', 'dns_update_list')
 bld.INSTALL_FILES('${SETUPDIR}', 'spn_update_list')