It's great to hear that both of your domain controllers (DC1 and DC2) are running on Windows Server 2012 R2. This gives you a suitable environment to raise the domain functional level. Here’s what you need to know:
Is It Okay to Click "Raise Domain Functional Level"?
Yes, you can safely raise the domain functional level given that both of your domain controllers are running Windows Server 2012 R2. This version allows you to take advantage of features introduced in Windows Server 2012 and Windows Server 2012 R2, which enhances your Active Directory capabilities.
Steps to Backup Active Directory
Backing up Active Directory is crucial for disaster recovery and ensuring that you can restore your environment if needed. Here are the steps to back up your Active Directory:
Method 1: Using Windows Server Backup
- Install Windows Server Backup:
- If it’s not already installed, you can add Windows Server Backup through the Server Manager:
- Go to Server Manager.
- Click on Manage > Add Roles and Features.
- Proceed through the wizard until you reach the Features section.
- Check the Windows Server Backup option and complete the installation.
- Open Windows Server Backup:
- Open Windows Server Backup from the Tools menu in Server Manager.
- Create a New Backup:
- Click on Backup Once in the right pane to perform a one-time backup.
- Choose the backup configuration (full server or custom; for AD, full server is usually best).
- Select the destination for the backup (local disk, external drive, or network share).
- Scheduling Backups (Optional):
- If you want to schedule regular backups, use the Scheduled Backup option instead of Backup Once. Follow the wizard to set your desired schedule and options.
- Verify the Backup:
- After the backup completes, verify it by checking the logs in the Windows Server Backup console to confirm that no errors occurred.
Method 2: Using Command Line (Native Method)
- Open Command Prompt as Administrator.
- Run the NTBackup Command:
- You can use this command:
Code:
shell wbadmin start backup -backupTarget:D: -include:C: -quiet
- Replace
D: with your desired backup destination.
- The
-include:C: option backs up the system state, which contains Active Directory.
Important Notes
- Backup System State: For Active Directory, ensure that your backup includes the System State. This can be done using either Windows Server Backup or a third-party backup solution that supports it.
- Test the Backup: After performing your backup, it may be beneficial to test the restoration process in a non-production environment to ensure it works as expected.
By following these steps, you can ensure that your Active Directory is properly backed up before raising the functional level. Once the backup is complete and confirmed, you can proceed with the
Raise Domain Functional Level option with confidence. If you have any further questions or need assistance with the process, feel free to ask!