Chapter 1 Flashcards

1
Q

PXE stands for…

A

Preboot Execution Environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

PXE is built into most….

A

NIC (network adapters)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

PXE contacts a _____ server which then servers the client with the IP address of a ____ server.

A

DHCP; WDS (Windows Deployment Server)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A role is a service which is designed to configure the server to perform a specific ___.

A

task

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A smaller component (below a role) is called a…

A

feature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

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.

A

“Export Configuration Settings”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What PS command is used to install a Windows roles feature? Provide full syntax.

A

Install-WindowsFeature -name FEATURENAME [-IncludeAllSubFeature] [-IncludeManagementTools]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What PS command is used to display the full list of available roles and features?

A

Get-WindowsFeature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Does PS distinguish between roles and features as opposed to Server Manager?

A

No.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

In WS 2016, can you add/remove GUI elements after the OS installation?

A

No you cannot. Once you install using the GUI option, you cannot remove it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the command to discover (list) the network interfaces?

A

Get-NetAdapter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the PS command to set the IP address, subnet mask and the gateway? Provide full syntax.

A

New-NetIPAddress -InterfaceIndex 6 - IPAddress 192.168.0.1 -PrefixLength 24 -DefaultGateway 255.255.255.0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the PS command to set the DNS address? Provide full syntax.

A

Set-DNSClientServerAddress -InterfaceIndex 6 -ServerAddresses (“192.168.0.1”, “192.168.0.2”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the two PS command to change the name of the computer and join it to be a domain? Provide full syntax.

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the PS command to get information about a command? Provide full syntax.

A

Get-Command

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the PS command to start a new PS session on a remote computer? Provide full syntax.

A

New-PSSession -ComputerName TheNameOfTheRemoteComputer

17
Q

How can you create a new PS Session after you use the New-PSSession command?

A

Enter-PSSession

18
Q

To terminate a remote PS session, what command would you run?

A

Disconnect-PsSession

19
Q

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.

A

DCOM; Set-NetFirewallRule

20
Q

Desired State Configuration (DSC) is a PS feature that uses script files to apply, monitor and maintain a specific….

A

system configuation

21
Q

DSC scripts are stored on a central…

A

DSC (Desired State Configuration) server

22
Q

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?

A

MOF (Management Object Format) file

23
Q

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

A

True

24
Q

In a push DSC architecture, you must run what command on the DSC server to push the configuration to the DSC clients?

A

Start-DscConfiguration

25
Q

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?

A

True

26
Q

WS 2016 does not support migrations between different…

A

languages

27
Q

Doing a migration is safer than doing an in-place upgrade. In order to do a migration, you need to use the feature….

A

Windows Server Migration Tools