Your network contains an Active Directory domain named contoso.com.
You have a DHCP server named Server1 that runs Windows Server 2008.
You install Windows Server 2012 R2 on a server named Server2. You install the DHCP Server server
role on Server2.
You need to migrate the DHCP services from Server1 to Server2. The solution must meet the
following requirements:
Ensure that existing leases are migrated.
Prevent lease conflicts.
Which three actions should you perform? (Each correct answer presents part of the solution. Choose
three.)
A.
On Server1, run the Export-DhcpServer cmdlet.
B.
On Server1, run the Stop-Service cmdlet.
C.
On Server2, run the Receive-SmigServerData cmdlet.
D.
On Server2, run the Stop-Service cmdlet.
E.
On Server2, run the Import-DhcpServer cmdlet.
F.
On Server1, run the Send-SmigServerData cmdlet.
I made a test using my LAB – answer A & B
1) first I added a new disk to storage poll
2) second I extended my virtual disk
Now in disk managament I can see that old volume disk is possible to extend BUT THE QUESTION IS ABOUT EXTEND DISK NOT VOLUME so C answer is not for this example (but it is good next step for using bigger volume)
sorry its mal.
is thats correct.
B A E
See Technet DHCP Migration
**************
Migrate DHCP
Install Migration Tools on both source and destination servers
Source Server
Stop DHCP service
PS C:\> Stop-Service DHCPserver
PS C:\> Add-PSSnapin Microsoft.Windows.ServerManager.Migration
Export-SmigServerSetting
PS C:\> Export-SmigServerSetting -featureID DHCP -User All -Group -IPConfig -path -Verbos
Remove DHCP server from the domain
Netsh DHCP delete server
Copy the files to the destination server
Change the IP address or disconnect or shutdown the source server
Destination Server
Install DHCP Server Role
PS C:\> Import-SmigServerSetting -featureid DHCP -User All -Group -IPConfig
-SourcePhysicalAddress ,
-TargetPhysicalAddress ,
-Force -path -Verbose
Start the DHCP Services
PS C:\> Start-Service DHCPServer
Authorize the DHCP server
netsh DHCP add server
reboot
BAE or BCF?