The command-line tool to stop or restart AD DS is _____________
a. Ldp.exe
b. Net.exe
c. Ntds.exe
d. None of the above.
B. This feature enables you to perform tasks such as offline defragmentation of the AD DS database without the need to restart the domain controller in DSRM. In addition, it reduces the time required to perform these actions. You can also stop and restart AD DS from Microsoft Management Console snap-ins.
You might also like to view...
The Reading view in PowerPoint displays the taskbar as well as the presentation
Indicate whether the statement is true or false
The following code containing a loop attempts to find how many times the letter ‘r’ appears in a string. But something is wrong with the loop. How would you fix it?
String s = “railroad”; int count = 0; char letter = s.charAt(index); for (int index = 0; index < s.length(); ++index) if (letter == ‘r’) ++count;