Chapter 1 Flashcards
PXE stands for…
Preboot Execution Environment
PXE is built into most….
NIC (network adapters)
PXE contacts a _____ server which then servers the client with the IP address of a ____ server.
DHCP; WDS (Windows Deployment Server)
A role is a service which is designed to configure the server to perform a specific ___.
task
A smaller component (below a role) is called a…
feature
This option creates an XML script that contains the procedures performed by the installation wizard. You can use this script to install the same configuration on another server by using PS.
“Export Configuration Settings”
What PS command is used to install a Windows roles feature? Provide full syntax.
Install-WindowsFeature -name FEATURENAME [-IncludeAllSubFeature] [-IncludeManagementTools]
What PS command is used to display the full list of available roles and features?
Get-WindowsFeature
Does PS distinguish between roles and features as opposed to Server Manager?
No.
In WS 2016, can you add/remove GUI elements after the OS installation?
No you cannot. Once you install using the GUI option, you cannot remove it.
What is the command to discover (list) the network interfaces?
Get-NetAdapter
What is the PS command to set the IP address, subnet mask and the gateway? Provide full syntax.
New-NetIPAddress -InterfaceIndex 6 - IPAddress 192.168.0.1 -PrefixLength 24 -DefaultGateway 255.255.255.0
What is the PS command to set the DNS address? Provide full syntax.
Set-DNSClientServerAddress -InterfaceIndex 6 -ServerAddresses (“192.168.0.1”, “192.168.0.2”)
What are the two PS command to change the name of the computer and join it to be a domain? Provide full syntax.
Add-Computer -DomainName exampledomain.com -NewName ServerB -Credential exampledomain\administrator
Netdom RenameComputer %newcomputername% /domain: domainname /userd: username /password: *
(The * causes the program to prompt you to as password)
What is the PS command to get information about a command? Provide full syntax.
Get-Command
What is the PS command to start a new PS session on a remote computer? Provide full syntax.
New-PSSession -ComputerName TheNameOfTheRemoteComputer
How can you create a new PS Session after you use the New-PSSession command?
Enter-PSSession
To terminate a remote PS session, what command would you run?
Disconnect-PsSession
Attempting to manage the MMC on a remote computer will generate an error by default because the ___ is not enabled by default. You need to use the ________ rule to enable it.
DCOM; Set-NetFirewallRule
Desired State Configuration (DSC) is a PS feature that uses script files to apply, monitor and maintain a specific….
system configuation
DSC scripts are stored on a central…
DSC (Desired State Configuration) server
When a configuration script is run on a DSC server, what is the name of the file that is created for each file in the computer, which is the actual script that is distributed to the DSC clients?
MOF (Management Object Format) file
In a pull DSC configuration, the LCM on the client computer will periodically pull the configuration on the DSC server and examine the local system for compliance. True/False
True
In a push DSC architecture, you must run what command on the DSC server to push the configuration to the DSC clients?
Start-DscConfiguration
A server upgrade from 2012 to 2016 is possible, but it is not from 2008 to 2016 unless you upgrade 2008 to 2012 and then 2012 to 2016. True/False?
True
WS 2016 does not support migrations between different…
languages
Doing a migration is safer than doing an in-place upgrade. In order to do a migration, you need to use the feature….
Windows Server Migration Tools