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