Install Windows Server 2016 Flashcards
What are the minimum storage requirements for Server 2016?
1.4 GHZ 64-bit Processor
512MB / 2GB ECC Memory
32GB Storage
1 Ethernet
How many VMs does Standard vs Datacenter edition support?
Standard: 2 per license
Datacenter: Unlimited
What does OSE stand for?
Operating System Environment
What are the minimum license requirements for Server 2016?
8 core licenses per CPU
8 core licenses per VM *standard edition
16 core licenses per server
What are the alternate editions of windows: Essentials, MultiPoint Premium Server, Storage Server and Hyper-V Server?
Essentials: Small business (25 to 50 users)
MultiPoint Premium Server: Academic only
Storage Server: OEM only
Hyper-V Server: Standalone, free
What are roles vs role services?
Role services are underlying roles that are within a parent role
What is the GUI like management called for Server Core?
sconfig
What is the PoSH command to configure an ethernet adapter?
New-NetIPAddress -InterfaceIndex/InterfaceAlias -IPAddress -DefaultGateway
What is the legacy command to configure an ethernet adapter?
netsh interface ipv4 set address name=”Ethernet” static
What is the PoSH command to configure DNS addresses?
Set-DnsClientServerAddress -InterfaceIndex/InterfaceAlias -ServerAddresses
What is the legacy command to configure DNS addresses?
netsh interface ipv4 set dns name=”Ethernet” static index=
What is the PoSH command to turn off windows firewall?
Set-NetFirewallProfile -Profile domain, public,private -Enabled False
What is the legacy command to turn off windows firewall?
netsh
advfirewall
set all profiles state off
What is the PoSH command to rename a computer and restart?
Rename-Computer -NewName -Restart
What is the legacy command to rename a computer?
netdom rename computer %computername% /newname: