Lesson 2 Flashcards

1
Q

What is the server core command to rename the server?

A

netdom renamecomputer %ComputerName% /NewName:

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

Command to restart the PC

A

shutdown /r

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

What is the server command to join a computer to a domain?

A

netdom join %ComputerName% /domain: /userd: /passwordd:

passwordd with an extra d is correct

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

Program used to configure IP info (address, DNS, subnet mask)

A

Netsh.exe

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

Command to install full GUI to a server core computer

A

Use Windows PowerShell:

Install-WindowsFeature Server-Gui-Mgmt-Infra, Server-Gui-Shell -Restart

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

PowerShell command to uninstall GUI and convert to a server core

A

Uninstall-WindowsFeature Server-Gui-Mgmt-Infra, Server-Gui-Shell -Restart

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

NIC Teaming

A

AKA Bonding, Balancing, Aggregation – Technology that allows you to combine bandwidth of multiple network interface adapters for increased performance and fault tolerance

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

Two modes of NIC Teaming

A

Switch Independent Mode

Switch Dependent Mode

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

NIC Teaming: Switch Independent Mode

A

All network adapters are connected to different switches, providing alternative routes through the network

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

NIC Teaming: Switch Dependent Mode

A

All network adapters are connected to the same switch, providing a single interface with the adapters’ combined bandwidth

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

If you have a configuration XML file describing roles and features to install, what PowerShell command installs that software?

A

Install-WindowsFeature -ConfigurationFilePath

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

Services

A

Programs that run continuously in the background, typically waiting for a client process to send them a request.

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

PowerShell Command: Get-Service

A

Lists the services installed on the system. Discover names you should use to reference services in other PowerShell commands

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

PS Command: Start-Service

A

Starts a stopped service

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

PS Command: Stop-Service

A

Stops a running service

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

PS Command: Restart-Service

A

Stops and starts a running service

17
Q

PS Command: Set-Service

A

Modifies a service’s properties