Information Technology Reference
In-Depth Information
Correct answers: A, D
2.
Correct: Automatic Updates must be configured before the client can connect to
the WSUS server to register and be placed in a WSUS group.
A.
Incorrect: Client computers can connect directly to Microsoft Update to actually
download updates but still register and be placed in a WSUS group.
B.
Incorrect: Recommended updates has nothing to do with assigning computers to
groups.
C.
Correct: This GPO enables client-side targeting and specifies the WSUS group in
which the client should be placed.
D.
Correct answers: B, C
3.
Incorrect: This command sets the content directory for the WID database.
A.
Correct: This command sets the content directory to a local SQL Server database
and the content directory.
B.
Correct: This command sets the WSUS Server Synchronization to download and
sync updates from Microsoft Update. A synchronization source has to be set
before WSUS can download updates.
C.
Incorrect: This command cleans up outdated or replaced updates on a working
WSUS server. It doesn't do postinstallation cleanup.
D.
Objective 1.3: thought experiment
Create a simple Windows PowerShell script to poll the System event log on the servers:
PollServers.PS1
1.
# Script to poll servers for recent System Event Log activity
$Servers = @(“Trey-DC-02”,”Trey-wds-11”,”Trey-Server-01”,”Trey-Server-02”)
ForEach ($srv in $Servers ) {
Echo “System Event Log for Server $srv`:”
Echo “------------------------------------”
Get-EventLog -ComputerName $srv -LogName System -Newest 40
Echo “ “
}
Note that although I show this as a script, you can easily run the commands inter-
actively from Windows PowerShell.
2. Foreach ($srv in $servers){ Clear-EventLog -LogName Application -ComputerName $srv }
3. Get-Counter -ComputerName < computername >
4. Create a DCS that contains the performance data you want to collect; then sched-
ule the DCS to run at appropriate intervals on each server, forwarding the result to
the server on which you're collecting the data. After each run, set a task to clear the
counters.
Search WWH ::




Custom Search