Lesson 2 Flashcards
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 Mode
Switch 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