如何尋找 Active Directory 的架構版本
如果您想要尋找 Active Directory 的架構版本或目前 Exchange 架構版本,請依照下列方法操作。您可以在 Windows Server 2025、2022、2019 和其他舊版的 Windows Server 中使用 ADSIEDIT、命令提示字元和 PowerShell 尋找架構版本。
如何尋找 Active Directory 的架構版本
若要尋找 Active Directory 的架構版本,請執行下列方法:
- 使用 ADSIEDIT
- 使用命令提示符
- 使用PowerShell
要了解有關這些方法的更多信息,請繼續閱讀。
1]使用ADSIEDIT
若要使用 ADSIEDIT 尋找架構版本,請執行下列步驟:
- 按 Win+R > 輸入 ADSIEdit.msc 並按 Enter 鈕。
- 右鍵單擊“ADSI 編輯”,然後按一下“連接到”選項。
- 從選擇眾所周知的命名上下文下拉選單中選擇架構。
- 按一下“確定”按鈕。
- 按一下 DC 容器。
- 右鍵點選CN=Schema,CN=Configuration並選擇Properties。
- 找到物件版本。
2]使用命令提示符
您可以使用 DSQuery 參數找到相同的內容。若要使用命令提示字元尋找 Active Directory 的架構版本,請依照下列步驟操作:
- 按 Win+R > 輸入 cmd > 按 Enter 鈕。
- 輸入這個指令:
dsquery * "cn=schema,cn=configuration,dc=contoso,dc=local"-scope base -attr objectVersion
- 找到物件版本。
3]使用PowerShell
若要使用 PowerShell 尋找 Active Directory 的架構版本,請執行下列步驟:
- 在工作列搜尋框中搜尋 powershell。
- 按一下單一搜尋結果。
- 輸入這個指令:
Get-ItemProperty 'AD:\CN=Schema,CN=Configuration,DC=contoso,DC=local' -Name objectVersion
如何尋找 Active Directory 的 Exchange 架構版本
若要尋找 Active Directory 的 Exchange 架構版本,請執行下列方法:
- 使用 ADSIEDIT
- 使用命令提示符
- 使用PowerShell
要了解有關這些方法的更多信息,請繼續閱讀。
1]使用ADSIEDIT
如果要尋找 Active Directory 的 Exchange 架構版本,則需要執行與尋找架構版本相同的操作。但是,當您在開啟 DC 容器後開啟CN=ms-Exch-Schema-Version-Pt 。
接下來,找到 rangeUpper 屬性。
2]使用命令提示符
若要使用命令提示字元尋找 Active Directory 的目前 Exchange 架構版本,請依照下列步驟操作:
- 開啟電腦上的命令提示字元。
- 輸入這個指令:
dsquery * "CN=ms-Exch-Schema-Version-Pt,cn=schema,cn=configuration,dc=contoso,dc=local"-scope base -attr rangeUpper
3]使用PowerShell
您可以使用 Get-ItemProperty 透過 PowerShell 找到相同的內容。若要尋找 Active Directory 的目前 Exchange 架構版本,請執行下列步驟:
- 在電腦上開啟 PowerShell。
- 輸入這個指令:
Get-ItemProperty "AD:\CN=ms-Exch-Schema-Version-Pt,cn=schema,cn=configuration,$((get-addomain).DistinguishedName)"-Name rangeUpper
- 找到 rangeUpper 屬性。
就這樣!
什麼是 Active Directory 架構等級?
Active Directory 架構層級可讓您尋找可以在 Active Directory 網域中建立的所有物件類別。換句話說,它包含這些物件類別的正式定義。每個層級都有不同的 Active Directory 架構物件和屬性。
如何在 Active Directory 中找到架構主機?
若要在 Active Directory 中尋找架構主機,請在執行提示中搜尋 mmc。然後,選擇“新增/刪除管理單元”選項。按一下「新增」選項,雙擊「Active Directory 架構」選項,然後按一下「關閉」按鈕。接下來,右鍵單擊左側的“Active Directory 架構”選項,然後選擇“操作主機”選項。
發佈留言