Installing Flashcards
Editions of Windows Server 2016 ?
Windows Server 2016 Essentials Windows Server 2016 Standard Windows Server 2016 Datacenter Microsoft Hyper-V Server 2016 Windows Storage Server 2016 Workgroup Windows Storage Server 2016 Standard
How many users/devices/RAM does Windows Server 2016 Essentials support ?
25 users
50 devices
64 GB RAM
How many sockets/RAM does Windows Server 2016 Standard support ?
64 sockets
4 TB RAM
How many users/processor core/RAM does Windows Storage Server 2016 Workgroup support ?
50 users
1 processor core
32 GB RAM
The minimum hardware requirements for Server 2016 ?
Processor: 1,4GHz x64
RAM: 512MB / 2GB (Core/Desktop Version)
HD: 32GB / 36GB (Core/Desktop Version)
Techniques for managing servers remotely ?
Server Manager Windows PowerShell remoting and PowerShell Direct Remote Shell (WinRS) Remote Desktop (not on Nano Server) Group Policy (not on Nano Server)
How is the PS-Module for installing Nano Server imported ?
Import-Module NanoServerImageGenerator.psm1
What has to be done on a server to manage it remotly by PS ?
WinRM Service must be started either manually or by cmdlet:
Enable-PSRemoting
Which of the folllowing roles can be installed on Nano Server ? AD DS AD CS DNS DHCP IIS
DNS
IIS
In which forms can a NanoServer be deployed ?
VHD for a Hyper-V host
bootable VHD for a physical Computer
bootable wim file for a physical computer
What PS-cmdlet creates the VHD or WIM of a Nano Server ?
New-NanoServerImage
- Edition ( Standard / Datacenter )
- DeploymentType ( Host / Guest )
- MediaPath …
- TargetPath (< …… >.vhd / .vhdx / .wim)
- ComputerName …
- Domain …
- Packages …
- …
How is a VHD-Nano-Server-File deployed and made bootable on a physical machine ?
As Admin of the physical machine:
- copy VHD-file to computer
- mount it
- bcdboot
- unmount it
How is a WIM-Nano-Server-File deployed and made bootable on a physical machine ?
- boot into winPE
- diskpart (to prepare disk)
- dism.exe (to apply Nano Server)
- wpeutil.exe reboot (to reboot)
What 2 Topics have to be configured on the Nano Server before the Server can be managed remotly ?
- Networking
- Firewall
How can a remote PS-Session on a Computer outside the domain be opened ?
Service WinRM must be running Set-Item WSMan:\localhost\Client\TrustedHosts -Value "" -Force Enter-PSSession -ComputerName -Credential \Administrator