Chapter 6 Flashcards
What is the simplest WSUS architecture?
Single WSUS server
Which WSUS architecture pushes updates from a central server to downstream servers?
Replica WSUS servers
Which WSUS architecture pushes updates from a central server to downstream servers for site admins to individually approve?
Autonomous WSUS servers
Which WSUS architecture only sends a list of updates from a central server to downstream servers for them to download the updates directly from Microsoft?
Low-bandwidth WSUS servers
Which WSUS architecture allows administrators to send updates to downstream servers on an offline medium, such as an external drive?
Disconnected WSUS servers
What is the recommended maximum number of layers for a WSUS architecture?
Three
What database is used by default in WSUS?
Windows Internal Database (WID)
How do you set up WSUS to use SQL instead of WID?
At installation, under Role Services, uncheck “WID Connectivity” and check “SQL Server Connectivity”
What are the requirements to use SQL Server with WSUS?
SQL server cannot be DC, WSUS server cannot be running Remote Desktop Services, both servers must be on same or trusted domain, have the same time zone, and each WSUS server must have its own database instance
Where can you configure the storage location for WSUS?
At installation, under Content, you can choose a path to store updates
How can you configure WSUS to not store updates, and only mark them as approved for clients to download themselves?
In the Content section, uncheck the “Store updates…” box
What other role is installed by default along with WSUS?
IIS so that clients have web server to connect to
How can you install WSUS with PowerShell?
Install-WindowsFeature -Name UpdateServices -IncludeManagementTools
What command must be run to configure WSUS storage after installing the feature through PowerShell?
wsusutil.exe postinstall content_dir=d:\wsus
How do you install WSUS without WID using PowerShell?
Install-WindowsFeature -Name UpdateServices-Services,UpdateServices-DB -IncludeManagementTools
What command needs to be run after installing WSUS without WID using PowerShell?
wsusutil.exe postinstall sql_instance_name=”db1\sqlinstance1” content_dir=d:\wsus
What is an easy way to conserve bandwidth and space in WSUS?
Only download updates in languages you use
What classes of updates does WSUS distribute by default?
Critical, Definition, Security, and Upgrades
How do you enable server-side targeting in WSUS?
Select a computer in the Update Services console, right-click and select “Change Membership”
How do you enable client-side targeting in WSUS?
Enable the Enable Client-Side Targeting Group Policy setting
How do you approve an update in WSUS?
In the Update Services console, right-click an update and select Approve to open the Approve Updates dialog and select which groups receive the update
How can clients be configured to receive updates from a WSUS server?
Using a GPO
Which Group Policy setting needs to be enabled to use WSUS?
Computer Configuration > Policies > Administrative Templates > Windows Components > Windows Update > Configure Automatic Updates
Which Group Policy setting needs to be enabled to set a time interval for when a client restarts after an update is installed?
Delay Restart for Scheduled Installations
Which Group Policy setting can be enabled to set a time to remind a user to restart after postponing a restart after an update?
Re-Prompt for Restart With Scheduled Installations
Which Group Policy setting can be enabled to prevent a client from restarting when a user is logged on?
No Auto-Restart With Logged On Users for Scheduled Automatic Updates Installations
Which Group Policy setting can be enabled to wake a computer from hibernation when updates need to be installed?
Enabling Windows Update Power Management to Automatically Wake Up the System to Install Scheduled Updates
Which Group Policy setting can be enabled to set a time interval for how long a client should wait after startup to install missed updates?
Rescheduled Automatic Updates Scheduled Installations
What is the default URL for a WSUS server?
http://servername:8530
Which Group Policy setting needs to be changed to point to the WSUS server?
Specify Intranet Microsoft Update Service Location
Which Group Policy setting can be enabled to set an interval for how often a client checks for Windows updates?
Automatic Updates Detection Frequency
Which Group Policy setting allows for clients to receive updates that are not signed by Microsoft?
Allow Signed Updates From an Intranet Microsoft Update Service Location
What is the service name for Windows Defender?
Windefend
How do you remove Windows Defender using PowerShell?
Uninstall-Windows-Feature -Name WindowsServerAntimalware