1. Install Windows Server in Host and Compute Environments Flashcards

1
Q

Server 2016 Minimum Requirements

A
  • Processor: 1.4GHz
  • Memory:
    • Server Core: 512 MB RAM
    • Desktop Experience: 2GB
  • Disk: 32GB minimum
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
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.

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 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 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

Cmdlet that gets the basic 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
Q

New-PSSession

A

Cmdlet which creates a remote PowerShell session to another machine

Example: New-PSSession -Computername "SERVERB"

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

Enter-PSSession

A

Open a remote PowerShell session you previously created with New-PSSession

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

Can you manage remote servers with MMC snap-ins?

A

Not in default configuration. By default, MMC uses DCOM and the communication settings for DCOM are not enabled by default.

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

PowerShell DSC

A

Desired State Configuration.

Uses script files to apply, monitor, and maintain a specific system configuration by either pulling scripts from central server or by central server pushing scripts to the client machines.

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

DSC Components

A
  1. Configurations: PowerShell scripts with node blocks to indicate names of servers to configure and resource blocks specifying properties to change/apply.
  2. Resources: Specify settings or components and the values the configuration script should assign.
  3. LCM: Engine running on client system that receives configurations from DSC server and applies them to the client
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

LCM

A

Local Configuration Manager

Engine running on client system that receives configurations from DSC server and applies them to the client

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

MOF file

A

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.

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

DSC Pull

A

In a pull architecture, MOF files are stored on an SMB share or IIS web server with an OData interface. LCM on the clients has 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.

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

DSC Push

A

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

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

Supported Server 2016 Upgrade Paths

A
  • Server 2012 R2 to Server 2016
  • Server 2008 to 2012 to 2016 (two-step)
  • Standard to Standard OR Standard to Datacenter
  • Datacenter to Datacenter
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

Unsupported Server 2016 Upgrade Paths

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

Preparation for Server 2016 Upgrade

A
  1. Check hardware compatibility
  2. Remove NIC teaming
  3. Check disk space
  4. Check app compatibility
  5. Verify all drivers/software is signed
  6. Install all windows updates
  7. Perform full backup
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

Unsupported Server 2016 Migration Scenarios

A
  • Migration from one language to another
  • From Server Core 2008 to 2016 (2008 version of Server Core does not support .NET framework)
38
Q

Export-SmigServerSetting

A

Cmdlet that exports certain Windows features and operating system settings to a migration store.

39
Q

Get-SmigServerFeature

A

Cmdlet to see what features are running to prepare for server migration on another server operating systems.

40
Q

Import-SmigServerSetting

A

Cmdlet which imports certain Windows features and operating system settings from a migration store and applies them to the local server

41
Q

Receive-SmigServerData

A

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
Q

Send-SmigServerData

A

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
Q

Generate Server Migration Tool Distribution Folder

A

Example: cd C:\Windows\system32\ServerMigrationTools SmigDeploy.exe /package /architecture amd64 /os WS12R2 /path C:\WS12R2

44
Q

MAK

A

Multiple Activation Key

A product identification key, which is used to activate more than one computer

45
Q

KMS

A

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

46
Q

MAK Independent

A

Each computer using the MAK must perform an individual activation with Microsoft

47
Q

MAK Proxy

A

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
Q

VAMT

A

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
Q

KMS Activation Threshold

A

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
Q

KMS Activation Validity Interval

A

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
Q

GVLKs

A

Generice Volume Licensince Keys

Provided by Microsoft to convert retail, MAK, or KMS Host license clients to KMS clients

52
Q

Active Directory-based Activation

A

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.

53
Q

AVMA

A

Automatic Virtual Machine Activation

Allows automatic activation for Hyper-V VMs on Datacenter editions.

54
Q

Physical-to-virtual (P2V) Conversion Classifications

A
  1. Low risk
  2. Non-critical
  3. Higher use
  4. Business critical
55
Q

MAP Toolkit

A

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
Q

DISM.exe

A

Deployment Image Servicing and Management

Command-line tool which enables you to modify Windows Imaging files.

57
Q

DISM.exe Maintenance Tasks

A
  • 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
Q

Mount image with DISM.exe

A

dism /mount-image /image-file:filename /index:# /name:imagename /mountdir:x:\folderpathname

59
Q

Determine image name and index number with DISM.exe

A

dism.exe /get-imageinfo /image-file:x:\pathtowimfile

60
Q

Add driver to mounted image using DISM.exe

A

dism.exe /image:x:\foldername /add-driver:drivername

61
Q

What DISM.exe switch do you use to service the currently running OS?

A

Substitute the /online switch for the /image switch to modify the currently running OS image.

62
Q

DISM.exe driver installation limitations

A

Can only manage drivers with Windows Information files (.inf), cannot install driver packaged as executable (.exe) files.

63
Q

Types of update files you can install with DISM.exe

A
  • Cabinet (CAB) files
  • Windows Update Stand-Alone Installer (MSU) files
64
Q

How do you install an update to a mounted image with DISM.exe?

A

dism.exe /image:x:\image /add-package /package-path:c:\updates\package.msu

65
Q

Display installed updates on an image with DISM.exe

A

dism.exe /image:x:\image /get-packages

66
Q

How do you commit the changes you’ve made to an image when using DISM.exe?

A

dism.exe /unmount-image /mountdir:x:\imagepath /commit

67
Q

How do you discard the changes you’ve made to an image when using DISM.exe?

A

dism.exe /unmount-image /mountdir:x:\imagepath /discard

68
Q

How do you determine which roles/features you can install with DISM.exe?

A

dism.exe /image:x:\imagepath /get-features

69
Q

How do you enable/install roles/features with DISM.exe?

A

dism.exe /image:x:\imagepath /enable-feature /featurename:feature

70
Q

How do you disable/remove roles/features with DISM.exe?

A

Similar to the enable feature:

dism.exe /image:x:\imagepath /disable-feature /featurename:feature

71
Q

NIC Teaming

A

Also known as Load Balancing and Failover. Allows multiple network adapters on a system to be placed into a team.

72
Q

Slmgr.vbs

A

Software License Manager script used with Wscript.exe or Cscript.exe to manage license activation on Windows Server 2016

73
Q

Restarting the Software Licensing Service

A

net stop sppsvc net start sppsvc

74
Q

LTSB

A

Long Term Servicing Branch

5 years of mainstream support + 5 years of extended support

75
Q

CBB

A

Current Branch for Business

Used for nano server to continually provide new updates and features multiple times per year as they are released

76
Q

WDS Server Requirements

A
  • Minimum OS of Server 2003
  • Member of domain
  • At least one network adapter
  • At least one NTFS partition
  • WDS installed
77
Q

Features On Demand

A

Allows administrators to completely remove role or features files.

78
Q

MDT

A

Microsoft Deployment Toolkit

Provides a unified collection of tools, processes, and guidance for automating desktop and server deployments.

79
Q

Windows AIK

A

Windows Automated Installation Kit

Helps configure and deploy OS images.

80
Q

MDT Minimum Requirements

A
  • Windows Server 2008 or Windows 7
  • Windows Assessment and Deployment Kit (ADK)
81
Q

Unattended Installation

A

Allows automatic installation of an operating system and applications by utilizing an answer file named Autounattend.xml

82
Q

Sysprep.exe

A

System Preparation Tool

Used to prepare a computer for disk imaging, and the image can then be captured using any image capturing software.

83
Q

Windows ADK

A

Windows Assessment and Deployment Kit

Set of utilities and documentation that allows an administrator to configure and deploy Windows OS.

84
Q

Windows ICD

A

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
Q

Windows Assessment Toolkit

A

Application compatibility toolkit allows an administrator to determine application compatibility between OS versions.

86
Q

Windows Performance Toolkit

A

A utility that will locate computers on a network and then perform a thorough inventory of them.

87
Q

WDS Image Capture Wizard

A

F8 at startup. Works in conjunction with Sysprep.exe to create and manage image files.

88
Q

Automated Deployment Options

A
  • Unattended installations
  • MDT
  • Windows ADK
  • WDS
  • Sysprep and Imaging
89
Q

Windows SIM

A

Windows System Image Manager

Allows you to create answer files to use during unattended installations.

90
Q

icd.exe

A

Imaging and Configuration Designer command-line tool