Book Image

System Center 2016 Virtual Machine Manager Cookbook - Third Edition

By : Roman Levchenko, EDVALDO ALESSANDRO CARDOSO
Book Image

System Center 2016 Virtual Machine Manager Cookbook - Third Edition

By: Roman Levchenko, EDVALDO ALESSANDRO CARDOSO

Overview of this book

Virtual Machine Manager (VMM) 2016 is part of the System Center suite to configure and manage datacenters and offers a unified management experience on-premises and Azure cloud. This book will be your best companion for day-to-day virtualization needs within your organization, as it takes you through a series of recipes to simplify and plan a highly scalable and available virtual infrastructure. You will learn the deployment tips, techniques, and solutions designed to show users how to improve VMM 2016 in a real-world scenario. The chapters are divided in a way that will allow you to implement the VMM 2016 and additional solutions required to effectively manage and monitor your fabrics and clouds. We will cover the most important new features in VMM 2016 across networking, storage, and compute, including brand new Guarded Fabric, Shielded VMs and Storage Spaces Direct. The recipes in the book provide step-by-step instructions giving you the simplest way to dive into VMM fabric concepts, private cloud, and integration with external solutions such as VMware, Operations Manager, and the Windows Azure Pack. By the end of this book, you will be armed with the knowledge you require to start designing and implementing virtual infrastructures in VMM 2016.
Table of Contents (16 chapters)
Title Page
Packt Upsell
Contributors
Preface
Index

Deploying shielded VMs


This section describes how to deploy shielded VMs in VMM 2016. You will also learn about template disks and shielded data files, which are used to create shielded VM templates.

How to do it...

Before you start, verify that HGS and guarded hosts are configured and that you have set global HGS settings in VMM (see the previous recipes for details).

Preparing and protecting a template disk

The first thing you need to do is prepare an OS gold image (VHDX) that will be used to create shielded VMs in VMM. Because shielded VMs are not regular VMs and BitLocker is used, the image must meet additional requirements:

  • Must be a GPT disk (this is needed for Gen2 VMs to support UEFI)
  • The logical disk type must be basic (as BitLocker does not support dynamic disks)
  • The logical disk must have at least two partitions (one is dedicated to Windows installation, another is active and contains the bootloader)
  • The filesystem must be NTFS (usually it's set by default)
  • You can install and generalize...