• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/17

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

17 Cards in this Set

  • Front
  • Back

What is the server core command to rename the server?

netdom renamecomputer %ComputerName% /NewName:
Command to restart the PC
shutdown /r
What is the server command to join a computer to a domain?
netdom join %ComputerName% /domain: /userd: /passwordd:(passwordd with an extra d is correct)
Program used to configure IP info (address DNS subnet mask)
Netsh.exe
Command to install full GUI to a server core computer
Use Windows PowerShell:Install-WindowsFeature Server-Gui-Mgmt-Infra Server-Gui-Shell -Restart
PowerShell command to uninstall GUI and convert to a server core
Uninstall-WindowsFeature Server-Gui-Mgmt-Infra Server-Gui-Shell -Restart
NIC Teaming
AKA Bonding Balancing Aggregation -- Technology that allows you to combine bandwidth of multiple network interface adapters for increased performance and fault tolerance
Two modes of NIC Teaming
Switch Independent ModeSwitch Dependent Mode
NIC Teaming: Switch Independent Mode
All network adapters are connected to different switches providing alternative routes through the network
NIC Teaming: Switch Dependent Mode
All network adapters are connected to the same switch providing a single interface with the adapters' combined bandwidth
If you have a configuration XML file describing roles and features to install what PowerShell command installs that software?
Install-WindowsFeature -ConfigurationFilePath
Services
Programs that run continuously in the background typically waiting for a client process to send them a request.
PowerShell Command: Get-Service
Lists the services installed on the system. Discover names you should use to reference services in other PowerShell commands
PS Command: Start-Service
Starts a stopped service
PS Command: Stop-Service
Stops a running service
PS Command: Restart-Service
Stops and starts a running service
PS Command: Set-Service

Modifies a service's properties