Skip to content

Commit fdc2334

Browse files
Merge pull request #6675 from Orin-Thomas/orthomas-03Mar25-A
Clarification possible to auto raise DFL by raising FFL if prereqs met
2 parents 1518fb1 + ece93ed commit fdc2334

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

WindowsServerDocs/identity/ad-ds/plan/raise-domain-forest-functional-levels.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ To view the domain or forest functional level using PowerShell, follow these ste
7070

7171
1. Open PowerShell as an administrator.
7272

73-
1. Run the following command to view the current domain functional level, replacing `<domain>` with the domain name.
73+
1. Run the following command to view the current domain functional levels of all domains in the forest.
7474

7575
```powershell
76-
Get-ADDomain -Identity <domain> | Select-Object DomainMode
76+
Get-ADForest | Select-Object -ExpandProperty Domains | ForEach-Object { Get-ADDomain $_ } | Select-Object Name, DomainMode
7777
```
7878

7979
1. Run the following command to view the current forest functional level, replacing `<forest>` with the forest name.
@@ -93,6 +93,9 @@ To raise the domain and forest functional levels, you can use the Active Directo
9393
> [!WARNING]
9494
> Changes to the domain and forest functional levels are irreversible. In order to undo the change, you must perform a forest recovery to revert to an earlier point of time.
9595
96+
> [!IMPORTANT]
97+
> If all domain controllers in all domains in the forest are running Windows Server 2025, it isn't necessary to raise individual domain functional levels manually as raising the forest functional level to Windows Server 2025 automatically raises the domain functional level of all domains in the forest to Windows Server 2025.
98+
9699
### [Desktop](#tab/desktop)
97100

98101
To raise the domain or forest functional level using the Active Directory Domains and Trusts console, follow these steps.

0 commit comments

Comments
 (0)