1. Install Flashcards

1
Q

Server 2016 Minimum Requirements

A
  • Processor: 1.4GHz x64 —–x86 is no longer supported upgrade your proc
  • Memory:
    • Server Core: 512 MB RAM
    • Desktop Experience: 2GB
  • Disk: 32GB minimum
  • gui or desktop needs slat, nx, and dep support
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Server 2016 Maximum Hardware Limits

A
  • Processor:
    • 512 logical processors
    • VM Processors: 240 per VM
  • Virtual Machines:
    • 1024 per host
  • Memory:
    • 24TB per host
    • 12TB per VM
  • Disk
    • VHDX Size: 64TB
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

OSE

A

Operating System Environment (physical or virtual)

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

Windows Server 2016 Datacenter Features

A

Storage Spaces Direct

Storage Replica

Shielded virtual machines

Unlimited OSEs

appropriate for a highly virtualized cloud environment

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

Windows Server 2016 Standard

A

Allows two OSEs. Lacks advanced features in Datacenter edition.

unlimited containers supported

not appropriate for a highly virtualized cloud environment

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

Windows Server 2016 Essentials

A

For small businesses with up to 25 users and 50 devices.

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

Windows Server 2016 MultiPoint Premium Server

A

Enables multiple users to access a single server installation. Available only through academic licensing.

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

Windows Storage Server 2016 Server

A

Available only through OEM as part of a dedicated storage hardware solution

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

Windows Hyper-V Server 2016

A

Hypervisor-only download, no GUI, only hosts VMs

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

Storage Spaces Direct

A

Makes shared clustered storage directly available to clusters using Storage Space-type technology, enabling the use of JBOD arrays for highly available storage.

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

Storage Replica

A

Storage-agnostic data replication between servers or clusters; allows you to synchronously or asynchronously replicate volumes at the block level using SMBv3

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

SMB

A

Server Message Block

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

Shielded virtual machines

A

Provides VMs with protection from compromised administrators that have access to the Hyper-V host by encrypting the VM state and its virtual disks

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

Network controller

A

Provides a central automation point for network infrastructure configuration, monitoring, and troubleshooting

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

WDS

A

Windows Deployment Services

A server-based system for deploying desktop operating systems automatically over the network. PXE is used to connect the computers to WDS.

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

PXE

A

Preboot Execution Environment

Allows a computer to load OS from a server.

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

Windows Server Core

A

Server installation that does not include a GUI, can only be managed through PowerShell or from another server that does have the full Desktop Experience.

YOU CAN NO LONGER INSTALL/UNINSTALL THE GUI FEATURES POST-INSTALLATION

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

Reasons to use Server Core

A

Reduced resource footprint

Fewer updates

Reduced attack surface

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

Get-Netadapter

A

gets the network adapter properties

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

New-NetIPAddress

A

Cmdlet used to configure IP addresses and their properties. This includes creating an IP address, subnet mask and default gateway on the interface.

Example:

New-NetIPAddress -InterfaceIndex 6 -IPAddress 192.168.5.80 -PrefixLength 24 -DefaultGateway 192.168.5.254

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

Set-DnsClientServerAddress

A

Cmdlet used to configure an interface with a DNS server address. This allows a computer on a network to access resources and other computers based on their DNS name.

Example: Set-DNSClientServerAddress -InterfaceIndex 6 -ServerAddresses (“192.168.5.1”,”192.168.5.2”)

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

Add-Computer

A

Cmdlet which adds the local computer to a domain or workgroup.

Example: Add-Computer -DomainName example.local -NewName “ServerB” -Credential (Get-Credential) (Joins machine to domain, renames machine, prompts for credentials)

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

Rename computer with netdom.exe

A

netdom renamecomputer SERVER2 /newname:SERVERB

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

Join domain with netdom.exe

A

netdom join COMPUTER1 /domain:EXAMPLE.local /userd:USERNAME /passwordd:*

(Joins domain and prompts for password

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
New-PSSession
Cmdlet which creates a remote PowerShell session to another machine Example: New-PSSession -Computername "SERVERB"
26
Enter-PSSession
Open a remote PowerShell session you previously created with New-PSSession
27
Can you manage remote servers with MMC snap-ins?
Not in the default configuration. By default, MMC uses DCOM and the communication settings for DCOM are not enabled by default
28
PowerShell DSC
Desired State Configuration. Uses script files to apply, monitor, and maintain a specific system configuration by either pulling scripts from a central server or by central server pushing scripts to the client machines.
29
DSC Components
Configurations: PowerShell scripts with node blocks to indicate names of servers to configure and resource blocks specifying properties to change/apply. Resources: Specify settings or components and the values the configuration script should assign. LCM: Engine running on client system that receives configurations from DSC server and applies them to the client
30
LCM
Local Configuration Manager Engine running on client system that receives configurations from DSC server and applies them to the client
31
MOF file
Management Object Format file Created by PowerShell DSC for each computer specified in a DSC script's node block. These are the actual scripts distributed to DSC clients.
32
DSC Pull
In a pull architecture, MOF files are stored on an SMB share or IIS webserver with an OData interface. LCM on the clients has a configuration script that specifies the URL of the Pull Server and creates a scheduled task. LCM polls Pull Server for configurations and checks the local machine for compliance, applying changes as needed.
33
DSC Push
Run Start-DscConfiguration on the Push Server, specifying path of MOF files. Automatically pushes the MOFs to all clients specified in an MOF's node configuration
34
Supported Server 2016 Upgrade Paths
Server 2012 R2 to Server 2016 Server 2008 to 2012 to 2016 (two-step) Standard to Standard OR Standard to Datacenter Datacenter to Datacenter
35
Unsupported Server 2016 Upgrade Paths
## Footnote Server 2008 to 2016 32-bit to 64-bit Datacenter to Standard Server Core to GUI or vice-versa One language to another Workstation to Server
36
Preparation for Server 2016 Upgrade
Check hardware compatibility Remove NIC teaming Check disk space Check app compatibility Verify all drivers/software is signed Install all windows updates Perform full backup
37
Unsupported Server 2016 Migration Scenarios
Migration from one language to another From Server Core 2008 to 2016 (2008 version of Server Core does not support .NET framework)
38
Export-SmigServerSetting
Cmdlet that exports certain Windows features and operating system settings to a migration store.
39
Get-SmigServerFeature
Cmdlet to see what features are running to prepare for server migration on another server operating systems.
40
Import-SmigServerSetting
Cmdlet which imports certain Windows features and operating system settings from a migration store and applies them to the local server
41
Receive-SmigServerData
Cmdlet which enables destination server to receive migrated files, folders, permissions, and share properties from a source server. The Send-SmigServerData cmdlet must be running on the source server at the same time.
42
Send-SmigServerData
Cmdlet which migrates files, folders, permissions, and share properties from a source server to a destination server. The Receive-SmigServerData cmdlet must be running on the destination server at the same time.
43
Generate Server Migration Tool Distribution Folder
Example: cd C:\Windows\system32\ServerMigrationTools SmigDeploy.exe /package /architecture amd64 /os WS12R2 /path C:\WS12R2
44
MAK
Multiple Activation Key A product identification key, which is used to activate more than one computer
45
KMS
Key Management Service A role service that allows you to activate systems within a network from a server where a KMS host has been installed volume activation service
46
MAK Independent
Each computer using the MAK must perform an individual activation with Microsoft
47
MAK Proxy
Client machines receive a MAK from a system running the Volume Activation Management Tool (VAMT) which caches the installation IDs of the clients and sends a single activation request to Microsoft and forwards (proxies) the response to the client.
48
VAMT
Volume Activation Management Tool Enables automating and centrally managing the Windows, Microsoft Office, and select other products volume and retail-activation process. VAMT can manage volume activation using MAKs or KMS.
49
KMS Activation Threshold
## Footnote KMS requires a minimum of 25 workstation systems or 5 server systems as clients. The KMS host does not perform any activations until the count reaches the minimum requirement. To prevent the count from dropping below the minimum requirements, Microsoft recommends only using KMS on networks with at least 50 machines.
50
KMS Activation Validity Interval
## Footnote KMS activations expire every 180 days which is their validity interval. Clients attempt to renew activations every 7 days, if unsuccessful for 180 days the product activation expires.
51
GVLKs
Generice Volume Licensince Keys Provided by Microsoft to convert retail, MAK, or KMS Host license clients to KMS clients
52
Active Directory-based Activation
## Footnote Similar to KMS but uses AD DS to store information instead of KMS host. Machines with GVLKs are activated automatically upon joining the domain and authenticating with AD. volume activation service
53
AVMA
Automatic Virtual Machine Activation Allows automatic activation for Hyper-V VMs on Datacenter editions. requires data exchange service to be running, is enabled by default but can be turned off.
54
Physical-to-virtual (P2V) Conversion Classifications
Low risk Non-critical Higher use Business-critical
55
MAP Toolkit
Microsoft Assessment and Planning Toolkit Inventory, assessment, and reporting tool that enables you to discover and evaluate the hardware and software on servers and workstations.
56
DISM.exe
Deployment Image Servicing and Management Command-line tool which enables you to modify Windows Imaging files.
57
DISM.exe Maintenance Tasks
Add/remove device drivers Add/remove language packs Add/remove packaged updates Add/remove files and folders Enable/disable OS features Execute answer files Add/remove app packages
58
Mount image with DISM.exe
dism /mount-image /image-file:filename /index:# /name:imagename /mountdir:x:\folderpathname
59
Determine image name and index number with DISM.exe
dism.exe /get-imageinfo /image-file:x:\pathtowimfile
60
Add driver to mounted image using DISM.exe
dism.exe /image:x:\foldername /add-driver:drivername
61
What DISM.exe switch do you use to service the currently running OS?
Substitute the /online switch for the /image switch to modify the currently running OS image.
62
DISM.exe driver installation limitations
Can only manage drivers with Windows Information files (.inf), cannot install driver packaged as executable (.exe) files.
63
Types of update files you can install with DISM.exe
Cabinet (CAB) files Windows Update Stand-Alone Installer (MSU) files
64
How do you install an update to a mounted image with DISM.exe?
dism.exe /image:x:\image /add-package /package-path:c:\updates\package.msu
65
Display installed updates on an image with DISM.exe
dism.exe /image:x:\image /get-packages
66
How do you commit the changes you've made to an image when using DISM.exe?
dism.exe /unmount-image /mountdir:x:\imagepath /commit
67
How do you discard the changes you've made to an image when using DISM.exe?
dism.exe /unmount-image /mountdir:x:\imagepath /discard
68
How do you determine which roles/features you can install with DISM.exe?
dism.exe /image:x:\imagepath /get-features
69
How do you enable/install roles/features with DISM.exe?
dism.exe /image:x:\imagepath /enable-feature /featurename:feature
70
How do you disable/remove roles/features with DISM.exe?
Similar to the enable feature: dism.exe /image:x:\imagepath /disable-feature /featurename:feature
71
NIC Teaming
Also known as Load Balancing and Failover. Allows multiple network adapters on a system to be placed into a team.
72
Slmgr.vbs
Software License Manager script used with Wscript.exe or Cscript.exe to manage license activation on Windows Server 2016
73
Restarting the Software Licensing Service
net stop sppsvc net start sppsvc
74
LTSB
Long Term Servicing Branch 5 years of mainstream support + 5 years of extended support
75
CBB
Current Branch for Business Used for nano server to continually provide new updates and features multiple times per year as they are released
76
WDS Server Requirements
Minimum OS of Server 2003 Member of domain At least one network adapter At least one NTFS partition WDS installed
77
Features On Demand
Allows administrators to completely remove role or features files.
78
MDT
Microsoft Deployment Toolkit Provides a unified collection of tools, processes, and guidance for automating desktop and server deployments.
79
Windows AIK
Windows Automated Installation Kit Helps configure and deploy OS images.
80
MDT Minimum Requirements
Microsoft Deployment Toolkit reqs: Windows Server 2008 or Windows 7 Windows Assessment and Deployment Kit (ADK)
81
Unattended Installation
Allows automatic installation of an operating system and applications by utilizing an answer file named Autounattend.xml
82
Sysprep.exe
System Preparation Tool Used to prepare a computer for disk imaging, and the image can then be captured using any image capturing software.
83
Windows ADK
Windows Assessment and Deployment Kit Set of utilities and documentation that allows an administrator to configure and deploy Windows OS.
84
Windows ICD
Windows Imaging and Configuration Designer Primarily designed for use by IT departments for business and educational institutions who need to provision bring-your-own-device (BYOD) and business-supplied devices.
85
Windows Assessment Toolkit
Application compatibility toolkit allows an administrator to determine application compatibility between OS versions.
86
Windows Performance Toolkit
A utility that will locate computers on a network and then perform a thorough inventory of them.
87
WDS Image Capture Wizard
F8 at startup. Works in conjunction with Sysprep.exe to create and manage image files.
88
Automated Deployment Options
Unattended installations MDT Windows ADK WDS Sysprep and Imaging
89
Windows SIM
Windows System Image Manager Allows you to create answer files to use during unattended installations.
90
icd.exe
Imaging and Configuration Designer command-line tool
91
If you are going to add a driver to a mounted image what is the first command you need to run? Practice question
dism /get-mountedwiminfo
92
What should you run to activate a product key? Practice test question
slmgr.vbs /ipk and slmgr.vbs /ato from powershell or sconfig.cmd from the command prompt allows windows activation do not run **slmgr.vbs /dlv** from powershell because this will only display the currently activated licenses
93
/add-provisionedappxpackage
registers a package to be installed when a user logs in
94
how would you allow explicit connection to a trusted host that is not in the domain?
on the remote server you would change the inbound firewall rule for windows remote management.
95