mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-15 02:13:43 +00:00
notes; code tags
This commit is contained in:
@ -85,7 +85,7 @@ Hardware requirements are displayed below:
|
||||
|**Description**|This computer will run Hyper-V, the Hyper-V management tools, and the Hyper-V Windows PowerShell module.|This computer is a Windows 7 or Windows 8/8.1 client on your corporate network that will be converted to a VM to demonstrate the upgrade process.|
|
||||
|**OS**|Windows 8.1/10 or Windows Server 2012/2012 R2/2016*|Windows 7 or a later|
|
||||
|**Edition**|Enterprise, Professional, or Education|Any|
|
||||
|**Architecture**|64-bit|Any <p> *Note: Retaining applications and settings requires that architecture (32 or 64-bit) is the same before and after the upgrade.*|
|
||||
|**Architecture**|64-bit|Any <br/><br/> *Note: Retaining applications and settings requires that architecture (32 or 64-bit) is the same before and after the upgrade.*|
|
||||
|**RAM**|8 GB RAM (16 GB recommended) to test Windows 10 deployment with MDT.<br>16 GB RAM to test Windows 10 deployment with Microsoft Endpoint Configuration Manager.|Any|
|
||||
|**Disk**|200 GB available hard disk space, any format.|Any size, MBR formatted.|
|
||||
|**CPU**|SLAT-Capable CPU|Any|
|
||||
@ -113,7 +113,8 @@ The lab architecture is summarized in the following diagram:
|
||||
|
||||
## Configure the PoC environment
|
||||
|
||||
>**Hint**: Before you begin, ensure that Windows PowerShell is pinned to the taskbar for easy access. If the Hyper-V host is running Windows Server then Windows PowerShell is automatically pinned to the taskbar. To pin Windows PowerShell to the taskbar on Windows 8.1 or Windows 10: Click **Start**, type **power**, right click **Windows PowerShell**, and then click **Pin to taskbar**. After Windows PowerShell is pinned to the taskbar, you can open an elevated Windows PowerShell prompt by right-clicking the icon on the taskbar and then clicking **Run as Administrator**.
|
||||
> [!TIP]
|
||||
> Before you begin, ensure that Windows PowerShell is pinned to the taskbar for easy access. If the Hyper-V host is running Windows Server then Windows PowerShell is automatically pinned to the taskbar. To pin Windows PowerShell to the taskbar on Windows 8.1 or Windows 10: Click **Start**, type **power**, right click **Windows PowerShell**, and then click **Pin to taskbar**. After Windows PowerShell is pinned to the taskbar, you can open an elevated Windows PowerShell prompt by right-clicking the icon on the taskbar and then clicking **Run as Administrator**.
|
||||
|
||||
### Procedures in this section
|
||||
|
||||
@ -130,7 +131,7 @@ Starting with Windows 8, the host computer’s microprocessor must support secon
|
||||
|
||||
1. To verify your computer supports SLAT, open an administrator command prompt, type **systeminfo**, press ENTER, and review the section displayed at the bottom of the output, next to Hyper-V Requirements. See the following example:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
C:\>systeminfo
|
||||
|
||||
...
|
||||
@ -138,7 +139,7 @@ Starting with Windows 8, the host computer’s microprocessor must support secon
|
||||
Virtualization Enabled In Firmware: Yes
|
||||
Second Level Address Translation: Yes
|
||||
Data Execution Prevention Available: Yes
|
||||
</pre>
|
||||
```
|
||||
|
||||
In this example, the computer supports SLAT and Hyper-V.
|
||||
|
||||
@ -146,7 +147,7 @@ Starting with Windows 8, the host computer’s microprocessor must support secon
|
||||
|
||||
You can also identify Hyper-V support using [tools](/archive/blogs/taylorb/hyper-v-will-my-computer-run-hyper-v-detecting-intel-vt-and-amd-v) provided by the processor manufacturer, the [msinfo32](/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc731397(v=ws.11)) tool, or you can download the [coreinfo](/sysinternals/downloads/coreinfo) utility and run it, as shown in the following example:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
C:\>coreinfo -v
|
||||
|
||||
Coreinfo v3.31 - Dump information on system CPU and memory topology
|
||||
@ -159,27 +160,32 @@ Starting with Windows 8, the host computer’s microprocessor must support secon
|
||||
HYPERVISOR - Hypervisor is present
|
||||
VMX * Supports Intel hardware-assisted virtualization
|
||||
EPT * Supports Intel extended page tables (SLAT)
|
||||
</pre>
|
||||
```
|
||||
|
||||
Note: A 64-bit operating system is required to run Hyper-V.
|
||||
> [!NOTE]
|
||||
> A 64-bit operating system is required to run Hyper-V.
|
||||
|
||||
2. The Hyper-V feature is not installed by default. To install it, open an elevated Windows PowerShell window and type the following command:
|
||||
|
||||
<pre>Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All</pre>
|
||||
```cmd
|
||||
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
|
||||
```
|
||||
|
||||
This command works on all operating systems that support Hyper-V, but on Windows Server operating systems you must type an additional command to add the Hyper-V Windows PowerShell module and the Hyper-V Manager console. This command will also install Hyper-V if it isn't already installed, so if desired you can just type the following command on Windows Server 2012 or 2016 instead of using the Enable-WindowsOptionalFeature command:
|
||||
|
||||
<pre>Install-WindowsFeature -Name Hyper-V -IncludeManagementTools</pre>
|
||||
```cmd
|
||||
Install-WindowsFeature -Name Hyper-V -IncludeManagementTools
|
||||
```
|
||||
|
||||
When you are prompted to restart the computer, choose **Yes**. The computer might restart more than once. After installation is complete, you can open Hyper-V Manager by typing **virtmgmt.msc** at an elevated command prompt.
|
||||
|
||||
>Alternatively, you can install Hyper-V using the Control Panel in Windows under **Turn Windows features on or off** for a client operating system, or using Server Manager's **Add Roles and Features Wizard** on a server operating system, as shown below:
|
||||
Alternatively, you can install Hyper-V using the Control Panel in Windows under **Turn Windows features on or off** for a client operating system, or using Server Manager's **Add Roles and Features Wizard** on a server operating system, as shown below:
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
<P>If you choose to install Hyper-V using Server Manager, accept all default selections. Also be sure to install both items under <strong>Role Administration Tools\Hyper-V Management Tools</strong>.
|
||||
If you choose to install Hyper-V using Server Manager, accept all default selections. Also be sure to install both items under <strong>Role Administration Tools\Hyper-V Management Tools</strong>.
|
||||
|
||||
### Download VHD and ISO files
|
||||
|
||||
@ -187,7 +193,8 @@ When you have completed installation of Hyper-V on the host computer, begin conf
|
||||
|
||||
1. Create a directory on your Hyper-V host named **C:\VHD** and download a single [Windows Server 2012 R2 VHD](https://www.microsoft.com/evalcenter/evaluate-windows-server-2012-r2) from the TechNet Evaluation Center to the **C:\VHD** directory.
|
||||
|
||||
**Important**: This guide assumes that VHDs are stored in the **C:\VHD** directory on the Hyper-V host. If you use a different directory to store VHDs, you must adjust steps in this guide appropriately.
|
||||
> [!IMPORTANT]
|
||||
> This guide assumes that VHDs are stored in the **C:\VHD** directory on the Hyper-V host. If you use a different directory to store VHDs, you must adjust steps in this guide appropriately.
|
||||
|
||||
After completing registration you will be able to download the 7.47 GB Windows Server 2012 R2 evaluation VHD. An example of the download offering is shown below.
|
||||
|
||||
@ -197,7 +204,10 @@ When you have completed installation of Hyper-V on the host computer, begin conf
|
||||
3. Copy the VHD to a second file also in the **C:\VHD** directory and name this VHD **2012R2-poc-2.vhd**.
|
||||
4. Download the [Windows 10 Enterprise ISO](https://www.microsoft.com/evalcenter/evaluate-windows-10-enterprise) from the TechNet Evaluation Center to the **C:\VHD** directory on your Hyper-V host.
|
||||
|
||||
>During registration, you must specify the type, version, and language of installation media to download. In this example, a Windows 10 Enterprise, 64 bit, English ISO is chosen. You can choose a different version if desired. **Note: The evaluation version of Windows 10 does not support in-place upgrade**.
|
||||
During registration, you must specify the type, version, and language of installation media to download. In this example, a Windows 10 Enterprise, 64 bit, English ISO is chosen. You can choose a different version if desired.
|
||||
|
||||
> [!NOTE]
|
||||
> The evaluation version of Windows 10 does not support in-place upgrade**.
|
||||
|
||||
5. Rename the ISO file that you downloaded to **w10-enterprise.iso**. Again, this is done so that the filename is simple to type and recognize. After completing registration you will be able to download the 3.63 GB Windows 10 Enterprise evaluation ISO.
|
||||
|
||||
@ -205,7 +215,7 @@ When you have completed installation of Hyper-V on the host computer, begin conf
|
||||
|
||||
The following displays the procedures described in this section, both before and after downloading files:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
C:>mkdir VHD
|
||||
C:>cd VHD
|
||||
C:\VHD>ren 9600*.vhd 2012R2-poc-1.vhd
|
||||
@ -216,11 +226,12 @@ When you have completed installation of Hyper-V on the host computer, begin conf
|
||||
2012R2-poc-1.vhd
|
||||
2012R2-poc-2.vhd
|
||||
w10-enterprise.iso
|
||||
</pre>
|
||||
```
|
||||
|
||||
### Convert PC to VM
|
||||
|
||||
>Important: Do not attempt to use the VM resulting from the following procedure as a reference image. Also, to avoid conflicts with existing clients, do not start the VM outside the PoC network.
|
||||
> [!IMPORTANT]
|
||||
> Do not attempt to use the VM resulting from the following procedure as a reference image. Also, to avoid conflicts with existing clients, do not start the VM outside the PoC network.
|
||||
|
||||
If you do not have a PC available to convert to VM, perform the following steps to download an evaluation VM:
|
||||
|
||||
@ -237,7 +248,8 @@ If you have a PC available to convert to VM (computer 2):
|
||||
|
||||
1. Sign in on computer 2 using an account with Administrator privileges.
|
||||
|
||||
>Important: the account used in this step must have local administrator privileges. You can use a local computer account, or a domain account with administrative rights if domain policy allows the use of cached credentials. After converting the computer to a VM, you must be able to sign in on this VM with administrator rights while the VM is disconnected from the corporate network.
|
||||
> [!IMPORTANT]
|
||||
> The account used in this step must have local administrator privileges. You can use a local computer account, or a domain account with administrative rights if domain policy allows the use of cached credentials. After converting the computer to a VM, you must be able to sign in on this VM with administrator rights while the VM is disconnected from the corporate network.
|
||||
|
||||
2. [Determine the VM generation and partition type](#determine-the-vm-generation-and-partition-type) that is required.
|
||||
3. Based on the VM generation and partition type, perform one of the following procedures: [Prepare a generation 1 VM](#prepare-a-generation-1-vm), [Prepare a generation 2 VM](#prepare-a-generation-2-vm), or [prepare a generation 1 VM from a GPT disk](#prepare-a-generation-1-vm-from-a-gpt-disk).
|
||||
@ -256,24 +268,24 @@ If the PC is running a 32-bit OS or the OS is Windows 7, it must be converted to
|
||||
- To determine the OS and architecture of a PC, type **systeminfo** at a command prompt and review the output next to **OS Name** and **System Type**.
|
||||
- To determine the partition style, open a Windows PowerShell prompt on the PC and type the following command:
|
||||
|
||||
<pre>
|
||||
Get-WmiObject -Class Win32_DiskPartition | Select-Object -Property SystemName,Caption,Type
|
||||
</pre>
|
||||
```powershell
|
||||
Get-WmiObject -Class Win32_DiskPartition | Select-Object -Property SystemName,Caption,Type
|
||||
```
|
||||
|
||||
If the **Type** column does not indicate GPT, then the disk partition format is MBR ("Installable File System" = MBR). In the following example, the disk is GPT:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
PS C:> Get-WmiObject -Class Win32_DiskPartition | Select-Object -Property SystemName,Caption,Type
|
||||
|
||||
SystemName Caption Type
|
||||
---------- ------- ----
|
||||
USER-PC1 Disk #0, Partition #0 GPT: System
|
||||
USER-PC1 Disk #0, Partition #1 GPT: Basic Data
|
||||
</pre>
|
||||
```
|
||||
|
||||
On a computer running Windows 8 or later, you can also type **Get-Disk** at a Windows PowerShell prompt to discover the partition style. The default output of this cmdlet displays the partition style for all attached disks. Both commands are displayed below. In this example, the client computer is running Windows 8.1 and uses a GPT style partition format:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
PS C:> Get-WmiObject -Class Win32_DiskPartition | Select-Object -Property SystemName,Caption,Type
|
||||
|
||||
SystemName Caption Type
|
||||
@ -289,7 +301,7 @@ PS C:> Get-Disk
|
||||
Number Friendly Name OperationalStatus Total Size Partition Style
|
||||
------ ------------- ----------------- ---------- ---------------
|
||||
0 INTEL SSDSCMMW240A3L Online 223.57 GB GPT
|
||||
</pre>
|
||||
```
|
||||
|
||||
<span id="determine-vm-generation"/>
|
||||
|
||||
@ -339,7 +351,11 @@ The following tables display the Hyper-V VM generation to choose based on the OS
|
||||
>You might experience timeouts if you attempt to run Disk2vhd from a network share, or specify a network share for the destination. To avoid timeouts, use local, portable media such as a USB drive.
|
||||
|
||||
2. On the computer you wish to convert, double-click the disk2vhd utility to start the graphical user interface.
|
||||
3. Select the checkboxes next to the **C:\\** and the **system reserved** (BIOS/MBR) volumes. The system volume is not assigned a drive letter, but will be displayed in the Disk2VHD tool with a volume label similar to **\\?\Volume{**. See the following example. **Important**: You must include the system volume in order to create a bootable VHD. If this volume is not displayed in the disk2vhd tool, then the computer is likely to be using the GPT partition style. For more information, see [Determine VM generation](#determine-vm-generation).
|
||||
3. Select the checkboxes next to the **C:\\** and the **system reserved** (BIOS/MBR) volumes. The system volume is not assigned a drive letter, but will be displayed in the Disk2VHD tool with a volume label similar to **\\?\Volume{**. See the following example.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> You must include the system volume in order to create a bootable VHD. If this volume is not displayed in the disk2vhd tool, then the computer is likely to be using the GPT partition style. For more information, see [Determine VM generation](#determine-vm-generation).
|
||||
|
||||
4. Specify a location to save the resulting VHD or VHDX file (F:\VHD\w7.vhdx in the following example) and click **Create**. See the following example:
|
||||
|
||||

|
||||
@ -348,13 +364,13 @@ The following tables display the Hyper-V VM generation to choose based on the OS
|
||||
|
||||
5. When the Disk2vhd utility has completed converting the source computer to a VHD, copy the VHDX file (w7.vhdx) to your Hyper-V host in the C:\VHD directory. There should now be four files in this directory:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
C:\vhd>dir /B
|
||||
2012R2-poc-1.vhd
|
||||
2012R2-poc-2.vhd
|
||||
w10-enterprise.iso
|
||||
w7.VHDX
|
||||
</pre>
|
||||
```
|
||||
|
||||
#### Prepare a generation 2 VM
|
||||
|
||||
@ -364,14 +380,17 @@ The following tables display the Hyper-V VM generation to choose based on the OS
|
||||
|
||||
2. On the computer you wish to convert, open an elevated command prompt and type the following command:
|
||||
|
||||
<pre>mountvol s: /s</pre>
|
||||
```cmd
|
||||
mountvol s: /s
|
||||
```
|
||||
|
||||
This command temporarily assigns a drive letter of S to the system volume and mounts it. If the letter S is already assigned to a different volume on the computer, then choose one that is available (ex: mountvol z: /s).
|
||||
|
||||
3. On the computer you wish to convert, double-click the disk2vhd utility to start the graphical user interface.
|
||||
4. Select the checkboxes next to the **C:\\** and the **S:\\** volumes, and clear the **Use Volume Shadow Copy checkbox**. Volume shadow copy will not work if the EFI system partition is selected.
|
||||
|
||||
**Important**: You must include the EFI system partition in order to create a bootable VHD. The Windows RE tools partition (shown below) is not required, but it can also be converted if desired.
|
||||
> [!IMPORTANT]
|
||||
> You must include the EFI system partition in order to create a bootable VHD. The Windows RE tools partition (shown below) is not required, but it can also be converted if desired.
|
||||
|
||||
5. Specify a location to save the resulting VHD or VHDX file (F:\VHD\PC1.vhdx in the following example) and click **Create**. See the following example:
|
||||
|
||||
@ -381,22 +400,26 @@ The following tables display the Hyper-V VM generation to choose based on the OS
|
||||
|
||||
6. When the Disk2vhd utility has completed converting the source computer to a VHD, copy the VHDX file (PC1.vhdx) to your Hyper-V host in the C:\VHD directory. There should now be four files in this directory:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
C:\vhd>dir /B
|
||||
2012R2-poc-1.vhd
|
||||
2012R2-poc-2.vhd
|
||||
w10-enterprise.iso
|
||||
PC1.VHDX
|
||||
</pre>
|
||||
```
|
||||
|
||||
#### Prepare a generation 1 VM from a GPT disk
|
||||
|
||||
1. Download the [Disk2vhd utility](/sysinternals/downloads/disk2vhd), extract the .zip file and copy **disk2vhd.exe** to a flash drive or other location that is accessible from the computer you wish to convert.
|
||||
|
||||
>You might experience timeouts if you attempt to run Disk2vhd from a network share, or specify a network share for the destination. To avoid timeouts, use local, portable media such as a USB drive.
|
||||
You might experience timeouts if you attempt to run Disk2vhd from a network share, or specify a network share for the destination. To avoid timeouts, use local, portable media such as a USB drive.
|
||||
|
||||
2. On the computer you wish to convert, double-click the disk2vhd utility to start the graphical user interface.
|
||||
3. Select the checkbox next to the **C:\\** volume and clear the checkbox next to **Use Vhdx**. Note: the system volume is not copied in this scenario, it will be added later.
|
||||
3. Select the checkbox next to the **C:\\** volume and clear the checkbox next to **Use Vhdx**.
|
||||
|
||||
> [!NOTE]
|
||||
> The system volume is not copied in this scenario, it will be added later.
|
||||
|
||||
4. Specify a location to save the resulting VHD file (F:\VHD\w7.vhd in the following example) and click **Create**. See the following example:
|
||||
|
||||

|
||||
@ -405,28 +428,31 @@ The following tables display the Hyper-V VM generation to choose based on the OS
|
||||
|
||||
5. When the Disk2vhd utility has completed converting the source computer to a VHD, copy the VHD file (w7.vhd) to your Hyper-V host in the C:\VHD directory. There should now be four files in this directory:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
C:\vhd>dir /B
|
||||
2012R2-poc-1.vhd
|
||||
2012R2-poc-2.vhd
|
||||
w10-enterprise.iso
|
||||
w7.VHD
|
||||
</pre>
|
||||
```
|
||||
|
||||
>In its current state, the w7.VHD file is not bootable. The VHD will be used to create a bootable VM later in the [Configure Hyper-V](#configure-hyper-v) section.
|
||||
In its current state, the w7.VHD file is not bootable. The VHD will be used to create a bootable VM later in the [Configure Hyper-V](#configure-hyper-v) section.
|
||||
|
||||
### Resize VHD
|
||||
|
||||
<HR size="4">
|
||||
<strong><I>Enhanced session mode</I></strong>
|
||||
|
||||
**Important**: Before proceeding, verify that you can take advantage of [enhanced session mode](/windows-server/virtualization/hyper-v/learn-more/Use-local-resources-on-Hyper-V-virtual-machine-with-VMConnect) when completing instructions in this guide. Enhanced session mode enables you to copy and paste the commands from the Hyper-V host to VMs, between VMs, and between RDP sessions. After copying some text, you can paste into a Windows PowerShell window by simply right-clicking. Before right-clicking, do not left click other locations as this can empty the clipboard. You can also copy and paste <U>files</U> directly from one computer to another by right-clicking and selecting copy on one computer, then right-clicking and selecting paste on another computer.
|
||||
> [!IMPORTANT]
|
||||
> Before proceeding, verify that you can take advantage of [enhanced session mode](/windows-server/virtualization/hyper-v/learn-more/Use-local-resources-on-Hyper-V-virtual-machine-with-VMConnect) when completing instructions in this guide. Enhanced session mode enables you to copy and paste the commands from the Hyper-V host to VMs, between VMs, and between RDP sessions. After copying some text, you can paste into a Windows PowerShell window by simply right-clicking. Before right-clicking, do not left click other locations as this can empty the clipboard. You can also copy and paste <U>files</U> directly from one computer to another by right-clicking and selecting copy on one computer, then right-clicking and selecting paste on another computer.
|
||||
|
||||
To ensure that enhanced session mode is enabled on the Hyper-V host, type the following command at an elevated Windows PowerShell prompt on the Hyper-V host:
|
||||
|
||||
<pre>Set-VMhost -EnableEnhancedSessionMode $TRUE</pre>
|
||||
```powershell
|
||||
Set-VMhost -EnableEnhancedSessionMode $TRUE
|
||||
```
|
||||
|
||||
>If enhanced session mode was not previously enabled, close any existing virtual machine connections and re-open them to enable access to enhanced session mode. As mentioned previously: instructions to "type" commands provided in this guide can be typed, but the preferred method is to copy and paste these commands. Most of the commands to this point in the guide have been brief, but many commands in sections below are longer and more complex.
|
||||
If enhanced session mode was not previously enabled, close any existing virtual machine connections and re-open them to enable access to enhanced session mode. As mentioned previously: instructions to "type" commands provided in this guide can be typed, but the preferred method is to copy and paste these commands. Most of the commands to this point in the guide have been brief, but many commands in sections below are longer and more complex.
|
||||
|
||||
<HR size="4">
|
||||
|
||||
@ -434,58 +460,66 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
|
||||
1. To add available space for the partition, type the following commands at an elevated Windows PowerShell prompt on the Hyper-V host:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Resize-VHD -Path c:\VHD\2012R2-poc-2.vhd -SizeBytes 100GB
|
||||
$x = (Mount-VHD -Path c:\VHD\2012R2-poc-2.vhd -passthru | Get-Disk | Get-Partition | Get-Volume).DriveLetter
|
||||
Resize-Partition -DriveLetter $x -Size (Get-PartitionSupportedSize -DriveLetter $x).SizeMax
|
||||
</pre>
|
||||
```
|
||||
|
||||
2. Verify that the mounted VHD drive is resized to 100 GB, and then dismount the drive:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Get-Volume -DriveLetter $x
|
||||
Dismount-VHD -Path c:\VHD\2012R2-poc-2.vhd</pre>
|
||||
Dismount-VHD -Path c:\VHD\2012R2-poc-2.vhd
|
||||
```
|
||||
|
||||
### Configure Hyper-V
|
||||
|
||||
1. Open an elevated Windows PowerShell window and type the following command to create two virtual switches named "poc-internal" and "poc-external":
|
||||
|
||||
>If the Hyper-V host already has an external virtual switch bound to a physical NIC, do not attempt to add a second external virtual switch. Attempting to add a second external switch will result in an error indicating that the NIC is **already bound to the Microsoft Virtual Switch protocol.** In this case, choose one of the following options:<BR>
|
||||
A) Remove the existing external virtual switch, then add the poc-external switch<BR>
|
||||
B) Rename the existing external switch to "poc-external"<BR>
|
||||
C) Replace each instance of "poc-external" used in this guide with the name of your existing external virtual switch<BR>
|
||||
If the Hyper-V host already has an external virtual switch bound to a physical NIC, do not attempt to add a second external virtual switch. Attempting to add a second external switch will result in an error indicating that the NIC is **already bound to the Microsoft Virtual Switch protocol.** In this case, choose one of the following options:
|
||||
|
||||
**A**: Remove the existing external virtual switch, then add the poc-external switch
|
||||
|
||||
**B**: Rename the existing external switch to "poc-external"
|
||||
|
||||
**C**: Replace each instance of "poc-external" used in this guide with the name of your existing external virtual switch<BR>
|
||||
|
||||
If you choose B) or C), then do not run the second command below.
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
New-VMSwitch -Name poc-internal -SwitchType Internal -Notes "PoC Network"
|
||||
New-VMSwitch -Name poc-external -NetAdapterName (Get-NetAdapter |?{$_.Status -eq "Up" -and !$_.Virtual}).Name -Notes "PoC External"
|
||||
</pre>
|
||||
```
|
||||
|
||||
**Note**: The second command above will temporarily interrupt network connectivity on the Hyper-V host.
|
||||
> [!NOTE]
|
||||
> The second command above will temporarily interrupt network connectivity on the Hyper-V host.
|
||||
|
||||
>Since an external virtual switch is associated to a physical network adapter on the Hyper-V host, this adapter must be specified when adding the virtual switch. The previous commands automate this by filtering for active non-virtual ethernet adapters using the Get-NetAdapter cmdlet ($_.Status -eq "Up" -and !$_.Virtual). If your Hyper-V host is dual-homed with multiple active ethernet adapters, this automation will not work, and the second command above will fail. In this case, you must edit the command used to add the "poc-external" virtual switch by inserting the appropriate NetAdapterName. The NetAdapterName value corresponds to the name of the network interface you wish to use. For example, if the network interface you use on the Hyper-V host to connect to the Internet is named "Ethernet 2" then type the following command to create an external virtual switch: New-VMSwitch -Name poc-external -NetAdapterName "Ethernet 2" -Notes "PoC External"
|
||||
Since an external virtual switch is associated to a physical network adapter on the Hyper-V host, this adapter must be specified when adding the virtual switch. The previous commands automate this by filtering for active non-virtual ethernet adapters using the Get-NetAdapter cmdlet ($_.Status -eq "Up" -and !$_.Virtual). If your Hyper-V host is dual-homed with multiple active ethernet adapters, this automation will not work, and the second command above will fail. In this case, you must edit the command used to add the "poc-external" virtual switch by inserting the appropriate NetAdapterName. The NetAdapterName value corresponds to the name of the network interface you wish to use. For example, if the network interface you use on the Hyper-V host to connect to the Internet is named "Ethernet 2" then type the following command to create an external virtual switch: New-VMSwitch -Name poc-external -NetAdapterName "Ethernet 2" -Notes "PoC External"
|
||||
|
||||
2. At the elevated Windows PowerShell prompt, type the following command to determine the megabytes of RAM that are currently available on the Hyper-V host:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
(Get-VMHostNumaNode).MemoryAvailable
|
||||
</pre>
|
||||
```
|
||||
|
||||
This command will display the megabytes of RAM available for VMs. On a Hyper-V host computer with 16 GB of physical RAM installed, 10,000 MB of RAM or greater should be available if the computer is not also running other applications. On a computer with 8 GB of physical RAM installed, at least 4000 MB should be available. If the computer has less RAM available than this, try closing applications to free up more memory.
|
||||
|
||||
3. Determine the available memory for VMs by dividing the available RAM by 4. For example:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
(Get-VMHostNumaNode).MemoryAvailable/4
|
||||
2775.5
|
||||
</pre>
|
||||
```
|
||||
|
||||
In this example, VMs can use a maximum of 2700 MB of RAM each, to run four VMs simultaneously.
|
||||
|
||||
4. At the elevated Windows PowerShell prompt, type the following command to create two new VMs. Other VMs will be added later.
|
||||
>**Important**: Replace the value of 2700MB for $maxRAM in the first command below with the RAM value that you calculated in the previous step.
|
||||
|
||||
<pre>
|
||||
> [!IMPORTANT]
|
||||
> Replace the value of 2700MB for $maxRAM in the first command below with the RAM value that you calculated in the previous step.
|
||||
|
||||
```powershell
|
||||
$maxRAM = 2700MB
|
||||
New-VM -Name "DC1" -VHDPath c:\vhd\2012R2-poc-1.vhd -SwitchName poc-internal
|
||||
Set-VMMemory -VMName "DC1" -DynamicMemoryEnabled $true -MinimumBytes 512MB -MaximumBytes $maxRAM -Buffer 20
|
||||
@ -494,35 +528,37 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
Add-VMNetworkAdapter -VMName "SRV1" -SwitchName "poc-external"
|
||||
Set-VMMemory -VMName "SRV1" -DynamicMemoryEnabled $true -MinimumBytes 512MB -MaximumBytes $maxRAM -Buffer 80
|
||||
Enable-VMIntegrationService -Name "Guest Service Interface" -VMName SRV1
|
||||
</pre>
|
||||
```
|
||||
|
||||
**Note**: The RAM values assigned to VMs in this step are not permanent, and can be easily increased or decreased later if needed to address performance issues.
|
||||
> [!NOTE]
|
||||
> The RAM values assigned to VMs in this step are not permanent, and can be easily increased or decreased later if needed to address performance issues.
|
||||
|
||||
5. Using the same elevated Windows PowerShell prompt that was used in the previous step, type one of the following sets of commands, depending on the type of VM that was prepared in the [Determine VM generation](#determine-vm-generation) section, either generation 1, generation 2, or generation 1 with GPT.
|
||||
|
||||
To create a generation 1 VM (using c:\vhd\w7.vhdx):
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
New-VM -Name "PC1" -VHDPath c:\vhd\w7.vhdx -SwitchName poc-internal
|
||||
Set-VMMemory -VMName "PC1" -DynamicMemoryEnabled $true -MinimumBytes 512MB -MaximumBytes $maxRAM -Buffer 20
|
||||
Enable-VMIntegrationService -Name "Guest Service Interface" -VMName PC1
|
||||
</pre>
|
||||
```
|
||||
|
||||
To create a generation 2 VM (using c:\vhd\PC1.vhdx):
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
New-VM -Name "PC1" -Generation 2 -VHDPath c:\vhd\PC1.vhdx -SwitchName poc-internal
|
||||
Set-VMMemory -VMName "PC1" -DynamicMemoryEnabled $true -MinimumBytes 512MB -MaximumBytes $maxRAM -Buffer 20
|
||||
Enable-VMIntegrationService -Name "Guest Service Interface" -VMName PC1
|
||||
</pre>
|
||||
```
|
||||
|
||||
To create a generation 1 VM from a GPT disk (using c:\vhd\w7.vhd):
|
||||
|
||||
>Note: The following procedure is more complex because it includes steps to convert the OS partition from GPT to MBR format. Steps are included to create a temporary VHD and attach it to the VM, the OS image is saved to this drive, the OS drive is then reformatted to MBR, the OS image restored, and the temporary drive is removed.
|
||||
> [!NOTE]
|
||||
> The following procedure is more complex because it includes steps to convert the OS partition from GPT to MBR format. Steps are included to create a temporary VHD and attach it to the VM, the OS image is saved to this drive, the OS drive is then reformatted to MBR, the OS image restored, and the temporary drive is removed.
|
||||
|
||||
First, type the following commands at an elevated Windows PowerShell prompt on the Hyper-V host to create a temporary VHD that will be used to save the OS image. Do not forget to include a pipe (|) at the end of the first five commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
New-VHD -Path c:\vhd\d.vhd -SizeBytes 1TB |
|
||||
Mount-VHD -Passthru |
|
||||
Get-Disk -Number {$_.DiskNumber} |
|
||||
@ -530,11 +566,11 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
New-Partition -UseMaximumSize |
|
||||
Format-Volume -Confirm:$false -FileSystem NTFS -force
|
||||
Dismount-VHD -Path c:\vhd\d.vhd
|
||||
</pre>
|
||||
```
|
||||
|
||||
Next, create the PC1 VM with two attached VHDs, and boot to DVD ($maxram must be defined previously using the same Windows PowerShell prompt):
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
New-VM -Name "PC1" -VHDPath c:\vhd\w7.vhd -SwitchName poc-internal
|
||||
Add-VMHardDiskDrive -VMName PC1 -Path c:\vhd\d.vhd
|
||||
Set-VMDvdDrive -VMName PC1 -Path c:\vhd\w10-enterprise.iso
|
||||
@ -542,7 +578,7 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
Enable-VMIntegrationService -Name "Guest Service Interface" -VMName PC1
|
||||
Start-VM PC1
|
||||
vmconnect localhost PC1
|
||||
</pre>
|
||||
```
|
||||
|
||||
The VM will automatically boot into Windows Setup. In the PC1 window:
|
||||
|
||||
@ -552,13 +588,13 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
4. Click **Command Prompt**.
|
||||
5. Type the following command to save an image of the OS drive:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
dism /Capture-Image /ImageFile:D:\c.wim /CaptureDir:C:\ /Name:Drive-C
|
||||
</pre>
|
||||
```
|
||||
|
||||
6. Wait for the OS image to complete saving, and then type the following commands to convert the C: drive to MBR:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
diskpart
|
||||
select disk 0
|
||||
clean
|
||||
@ -570,121 +606,122 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
format fs=ntfs quick label=OS
|
||||
assign letter=c
|
||||
exit
|
||||
</pre>
|
||||
```
|
||||
|
||||
7. Type the following commands to restore the OS image and boot files:
|
||||
|
||||
<pre>
|
||||
```cmd
|
||||
dism /Apply-Image /ImageFile:D:\c.wim /Index:1 /ApplyDir:C:\
|
||||
bcdboot c:\windows
|
||||
exit
|
||||
</pre>
|
||||
```
|
||||
|
||||
8. Click **Continue** and verify the VM boots successfully (do not boot from DVD).
|
||||
9. Click **Ctrl+Alt+Del**, and then in the bottom right corner, click **Shut down**.
|
||||
10. Type the following commands at an elevated Windows PowerShell prompt on the Hyper-V host to remove the temporary disks and drives from PC1:
|
||||
|
||||
<pre>
|
||||
Remove-VMHardDiskDrive -VMName PC1 -ControllerType IDE -ControllerNumber 0 -ControllerLocation 1
|
||||
Set-VMDvdDrive -VMName PC1 -Path $null
|
||||
</pre>
|
||||
```powershell
|
||||
Remove-VMHardDiskDrive -VMName PC1 -ControllerType IDE -ControllerNumber 0 -ControllerLocation 1
|
||||
Set-VMDvdDrive -VMName PC1 -Path $null
|
||||
```
|
||||
|
||||
### Configure VMs
|
||||
|
||||
1. At an elevated Windows PowerShell prompt on the Hyper-V host, start the first Windows Server VM and connect to it by typing the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Start-VM DC1
|
||||
vmconnect localhost DC1
|
||||
</pre>
|
||||
```
|
||||
|
||||
2. Click **Next** to accept the default settings, read the license terms and click **I accept**, provide an administrator password of <strong>pass@word1</strong>, and click **Finish**.
|
||||
3. Click **Ctrl+Alt+Del** in the upper left corner of the virtual machine connection window, and then sign in to DC1 using the Administrator account.
|
||||
4. Right-click **Start**, point to **Shut down or sign out**, and click **Sign out**. The VM connection will reset and a new connection dialog box will appear enabling you to choose a custom display configuration. Select a desktop size, click **Connect** and sign in again with the local Administrator account. Note: Signing in this way ensures that [enhanced session mode](/windows-server/virtualization/hyper-v/learn-more/Use-local-resources-on-Hyper-V-virtual-machine-with-VMConnect) is enabled. It is only necessary to do this the first time you sign in to a new VM.
|
||||
5. If DC1 is configured as described in this guide, it will currently be assigned an APIPA address, have a randomly generated hostname, and a single network adapter named "Ethernet." Open an elevated Windows PowerShell prompt on DC1 and type or paste the following commands to provide a new hostname and configure a static IP address and gateway:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Rename-Computer DC1
|
||||
New-NetIPAddress -InterfaceAlias Ethernet -IPAddress 192.168.0.1 -PrefixLength 24 -DefaultGateway 192.168.0.2
|
||||
Set-DnsClientServerAddress -InterfaceAlias Ethernet -ServerAddresses 192.168.0.1,192.168.0.2
|
||||
</pre>
|
||||
```
|
||||
|
||||
> The default gateway at 192.168.0.2 will be configured later in this guide.
|
||||
>
|
||||
> Note: A list of available tasks for an app will be populated the first time you run it on the taskbar. Because these tasks aren't available until the App has been run, you will not see the **Run as Administrator** task until you have left-clicked Windows PowerShell for the first time. In this newly created VM, you will need to left-click Windows PowerShell one time, and then you can right-click and choose Run as Administrator to open an elevated Windows PowerShell prompt.
|
||||
The default gateway at 192.168.0.2 will be configured later in this guide.
|
||||
|
||||
> [!NOTE]
|
||||
> A list of available tasks for an app will be populated the first time you run it on the taskbar. Because these tasks aren't available until the App has been run, you will not see the **Run as Administrator** task until you have left-clicked Windows PowerShell for the first time. In this newly created VM, you will need to left-click Windows PowerShell one time, and then you can right-click and choose Run as Administrator to open an elevated Windows PowerShell prompt.
|
||||
|
||||
6. Install the Active Directory Domain Services role by typing the following command at an elevated Windows PowerShell prompt:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Install-WindowsFeature -Name AD-Domain-Services -IncludeAllSubFeature -IncludeManagementTools
|
||||
</pre>
|
||||
```
|
||||
|
||||
7. Before promoting DC1 to a Domain Controller, you must reboot so that the name change in step 3 above takes effect. To restart the computer, type the following command at an elevated Windows PowerShell prompt:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Restart-Computer
|
||||
</pre>
|
||||
```
|
||||
|
||||
8. When DC1 has rebooted, sign in again and open an elevated Windows PowerShell prompt. Now you can promote the server to be a domain controller. The directory services restore mode password must be entered as a secure string. Type the following commands at the elevated Windows PowerShell prompt:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
$pass = "pass@word1" | ConvertTo-SecureString -AsPlainText -Force
|
||||
Install-ADDSForest -DomainName contoso.com -InstallDns -SafeModeAdministratorPassword $pass -Force
|
||||
</pre>
|
||||
```
|
||||
|
||||
Ignore any warnings that are displayed. The computer will automatically reboot upon completion.
|
||||
|
||||
9. When the reboot has completed, reconnect to DC1, sign in using the CONTOSO\Administrator account, open an elevated Windows PowerShell prompt, and use the following commands to add a reverse lookup zone for the PoC network, add the DHCP Server role, authorize DHCP in Active Directory, and suppress the post-DHCP-install alert:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Add-DnsServerPrimaryZone -NetworkID "192.168.0.0/24" -ReplicationScope Forest
|
||||
Add-WindowsFeature -Name DHCP -IncludeManagementTools
|
||||
netsh dhcp add securitygroups
|
||||
Restart-Service DHCPServer
|
||||
Add-DhcpServerInDC dc1.contoso.com 192.168.0.1
|
||||
Set-ItemProperty -Path registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ServerManager\Roles\12 -Name ConfigurationState -Value 2
|
||||
</pre>
|
||||
```
|
||||
|
||||
10. Next, add a DHCP scope and set option values:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Add-DhcpServerv4Scope -Name "PoC Scope" -StartRange 192.168.0.100 -EndRange 192.168.0.199 -SubnetMask 255.255.255.0 -Description "Windows 10 PoC" -State Active
|
||||
Set-DhcpServerv4OptionValue -ScopeId 192.168.0.0 -DnsDomain contoso.com -Router 192.168.0.2 -DnsServer 192.168.0.1,192.168.0.2 -Force
|
||||
</pre>
|
||||
```
|
||||
|
||||
>The -Force option is necessary when adding scope options to skip validation of 192.168.0.2 as a DNS server because we have not configured it yet. The scope should immediately begin issuing leases on the PoC network. The first DHCP lease that will be issued is to vEthernet interface on the Hyper-V host, which is a member of the internal network. You can verify this by using the command: Get-DhcpServerv4Lease -ScopeId 192.168.0.0.
|
||||
|
||||
11. The DNS server role will also be installed on the member server, SRV1, at 192.168.0.2 so that we can forward DNS queries from DC1 to SRV1 to resolve Internet names without having to configure a forwarder outside the PoC network. Since the IP address of SRV1 already exists on DC1's network adapter, it will be automatically added during the DCPROMO process. To verify this server-level DNS forwarder on DC1, type the following command at an elevated Windows PowerShell prompt on DC1:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Get-DnsServerForwarder
|
||||
</pre>
|
||||
```
|
||||
|
||||
The following output should be displayed:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
UseRootHint : True
|
||||
Timeout(s) : 3
|
||||
EnableReordering : True
|
||||
IPAddress : 192.168.0.2
|
||||
ReorderedIPAddress : 192.168.0.2
|
||||
</pre>
|
||||
```
|
||||
|
||||
If this output is not displayed, you can use the following command to add SRV1 as a forwarder:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Add-DnsServerForwarder -IPAddress 192.168.0.2
|
||||
</pre>
|
||||
```
|
||||
|
||||
**Configure service and user accounts**
|
||||
|
||||
Windows 10 deployment with MDT and Microsoft Endpoint Manager requires specific accounts to perform some actions. Service accounts will be created to use for these tasks. A user account is also added in the contoso.com domain that can be used for testing purposes. In the test lab environment, passwords are set to never expire.
|
||||
|
||||
>To keep this test lab relatively simple, we will not create a custom OU structure and set permissions. Required permissions are enabled by adding accounts to the Domain Admins group. To configure these settings in a production environment, see [Prepare for Zero Touch Installation of Windows 10 with Configuration Manager](deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager.md)
|
||||
To keep this test lab relatively simple, we will not create a custom OU structure and set permissions. Required permissions are enabled by adding accounts to the Domain Admins group. To configure these settings in a production environment, see [Prepare for Zero Touch Installation of Windows 10 with Configuration Manager](deploy-windows-cm/prepare-for-zero-touch-installation-of-windows-10-with-configuration-manager.md)
|
||||
|
||||
On DC1, open an elevated Windows PowerShell prompt and type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
New-ADUser -Name User1 -UserPrincipalName user1 -Description "User account" -AccountPassword (ConvertTo-SecureString "pass@word1" -AsPlainText -Force) -ChangePasswordAtLogon $false -Enabled $true
|
||||
New-ADUser -Name MDT_BA -UserPrincipalName MDT_BA -Description "MDT Build Account" -AccountPassword (ConvertTo-SecureString "pass@word1" -AsPlainText -Force) -ChangePasswordAtLogon $false -Enabled $true
|
||||
New-ADUser -Name CM_JD -UserPrincipalName CM_JD -Description "Configuration Manager Join Domain Account" -AccountPassword (ConvertTo-SecureString "pass@word1" -AsPlainText -Force) -ChangePasswordAtLogon $false -Enabled $true
|
||||
@ -695,7 +732,7 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
Set-ADUser -Identity MDT_BA -PasswordNeverExpires $true
|
||||
Set-ADUser -Identity CM_JD -PasswordNeverExpires $true
|
||||
Set-ADUser -Identity CM_NAA -PasswordNeverExpires $true
|
||||
</pre>
|
||||
```
|
||||
|
||||
12. Minimize the DC1 VM window but **do not stop** the VM.
|
||||
|
||||
@ -703,10 +740,10 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
|
||||
13. If the PC1 VM is not started yet, using an elevated Windows PowerShell prompt on the Hyper-V host, start the client VM (PC1), and connect to it:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Start-VM PC1
|
||||
vmconnect localhost PC1
|
||||
</pre>
|
||||
```
|
||||
|
||||
14. Sign in to PC1 using an account that has local administrator rights.
|
||||
|
||||
@ -724,7 +761,7 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
|
||||
To open Windows PowerShell on Windows 7, click **Start**, and search for "**power**." Right-click **Windows PowerShell** and then click **Pin to Taskbar** so that it is simpler to use Windows PowerShell during this lab. Click **Windows PowerShell** on the taskbar, and then type **ipconfig** at the prompt to see the client's current IP address. Also type **ping dc1.contoso.com** and **nltest /dsgetdc:contoso.com** to verify that it can reach the domain controller. See the following examples of a successful network connection:
|
||||
|
||||
```
|
||||
```cmd
|
||||
ipconfig
|
||||
|
||||
Windows IP Configuration
|
||||
@ -759,14 +796,14 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
|
||||
18. Minimize the PC1 window and switch to the Hyper-V host computer. Open an elevated Windows PowerShell ISE window on the Hyper-V host (right-click Windows PowerShell and then click **Run ISE as Administrator**) and type the following commands in the (upper) script editor pane:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
(Get-WmiObject Win32_ComputerSystem).UnjoinDomainOrWorkgroup($null,$null,0)
|
||||
$pass = "pass@word1" | ConvertTo-SecureString -AsPlainText -Force
|
||||
$user = "contoso\administrator"
|
||||
$cred = New-Object System.Management.Automation.PSCredential($user,$pass)
|
||||
Add-Computer -DomainName contoso.com -Credential $cred
|
||||
Restart-Computer
|
||||
</pre>
|
||||
```
|
||||
|
||||
>If you do not see the script pane, click **View** and verify **Show Script Pane Top** is enabled. Click **File** and then click **New**.
|
||||
|
||||
@ -777,10 +814,10 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
19. Click **File**, click **Save As**, and save the commands as **c:\VHD\pc1.ps1** on the Hyper-V host.
|
||||
20. In the (lower) terminal input window, type the following commands to enable Guest Service Interface on PC1 and then use this service to copy the script to PC1:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Enable-VMIntegrationService -VMName PC1 -Name "Guest Service Interface"
|
||||
Copy-VMFile "PC1" -SourcePath "C:\VHD\pc1.ps1" -DestinationPath "C:\pc1.ps1" -CreateFullPath -FileSource Host
|
||||
</pre>
|
||||
```
|
||||
|
||||
>In order for this command to work properly, PC1 must be running the vmicguestinterface (Hyper-V Guest Service Interface) service. If this service is not enabled in this step, then the copy-VMFile command will fail. In this case, you can try updating integration services on the VM by mounting the Hyper-V Integration Services Setup (vmguest.iso), which is located in C:\Windows\System32 on Windows Server 2012 and 2012 R2 operating systems that are running the Hyper-V role service.
|
||||
|
||||
@ -788,66 +825,69 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
|
||||
21. On PC1, type the following commands at an elevated Windows PowerShell prompt:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Get-Content c:\pc1.ps1 | powershell.exe -noprofile -
|
||||
</pre>
|
||||
```
|
||||
|
||||
>The commands in this script might take a few moments to complete. If an error is displayed, check that you typed the command correctly, paying close attention to spaces. PC1 is removed from its domain in this step while not connected to the corporate network so as to ensure the computer object in the corporate domain is unaffected. PC1 is also not renamed to "PC1" in system properties so that it maintains some of its mirrored identity. However, if desired you can also rename the computer.
|
||||
|
||||
22. Upon completion of the script, PC1 will automatically restart. When it has restarted, sign in to the contoso.com domain using the **Switch User** option, with the **user1** account you created in step 11 of this section.
|
||||
>**Important**: The settings that will be used later to migrate user data specifically select only accounts that belong to the CONTOSO domain. However, this can be changed to migrate all user accounts, or only other specified accounts. If you wish to test migration of user data and settings with accounts other than those in the CONTOSO domain, you must specify these accounts or domains when you configure the value of **ScanStateArgs** in the MDT test lab guide. This value is specifically called out when you get to that step. If you wish to only migrate CONTOSO accounts, then you can log in with the user1 account or the administrator account at this time and modify some of the files and settings for later use in migration testing.
|
||||
|
||||
> [!IMPORTANT]
|
||||
> The settings that will be used later to migrate user data specifically select only accounts that belong to the CONTOSO domain. However, this can be changed to migrate all user accounts, or only other specified accounts. If you wish to test migration of user data and settings with accounts other than those in the CONTOSO domain, you must specify these accounts or domains when you configure the value of **ScanStateArgs** in the MDT test lab guide. This value is specifically called out when you get to that step. If you wish to only migrate CONTOSO accounts, then you can log in with the user1 account or the administrator account at this time and modify some of the files and settings for later use in migration testing.
|
||||
|
||||
23. Minimize the PC1 window but do not turn it off while the second Windows Server 2012 R2 VM (SRV1) is configured. This verifies that the Hyper-V host has enough resources to run all VMs simultaneously. Next, SRV1 will be started, joined to the contoso.com domain, and configured with RRAS and DNS services.
|
||||
24. On the Hyper-V host computer, at an elevated Windows PowerShell prompt, type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Start-VM SRV1
|
||||
vmconnect localhost SRV1
|
||||
</pre>
|
||||
```
|
||||
|
||||
25. Accept the default settings, read license terms and accept them, provide an administrator password of <strong>pass@word1</strong>, and click **Finish**. When you are prompted about finding PCs, devices, and content on the network, click **Yes**.
|
||||
26. Sign in to SRV1 using the local administrator account. In the same way that was done on DC1, sign out of SRV1 and then sign in again to enable enhanced session mode. This will enable you to copy and paste Windows PowerShell commands from the Hyper-V host to the VM.
|
||||
27. Open an elevated Windows PowerShell prompt on SRV1 and type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Rename-Computer SRV1
|
||||
New-NetIPAddress -InterfaceAlias Ethernet -IPAddress 192.168.0.2 -PrefixLength 24
|
||||
Set-DnsClientServerAddress -InterfaceAlias Ethernet -ServerAddresses 192.168.0.1,192.168.0.2
|
||||
Restart-Computer
|
||||
</pre>
|
||||
```
|
||||
|
||||
>[!IMPORTANT]
|
||||
>Verify that you are configuring the correct interface in this step. The commands in this step assume that the poc-internal interface on SRV1 is named "Ethernet." If you are unsure how to check the interface, see step #30 below for instructions and tips on how to verify and modify the interface name.
|
||||
> [!IMPORTANT]
|
||||
> Verify that you are configuring the correct interface in this step. The commands in this step assume that the poc-internal interface on SRV1 is named "Ethernet." If you are unsure how to check the interface, see step #30 below for instructions and tips on how to verify and modify the interface name.
|
||||
|
||||
28. Wait for the computer to restart, sign in again, then type the following commands at an elevated Windows PowerShell prompt:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
$pass = "pass@word1" | ConvertTo-SecureString -AsPlainText -Force
|
||||
$user = "contoso\administrator"
|
||||
$cred = New-Object System.Management.Automation.PSCredential($user,$pass)
|
||||
Add-Computer -DomainName contoso.com -Credential $cred
|
||||
Restart-Computer
|
||||
</pre>
|
||||
```
|
||||
|
||||
29. Sign in to the contoso.com domain on SRV1 using the domain administrator account (enter contoso\administrator as the user), open an elevated Windows PowerShell prompt, and type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Install-WindowsFeature -Name DNS -IncludeManagementTools
|
||||
Install-WindowsFeature -Name WDS -IncludeManagementTools
|
||||
Install-WindowsFeature -Name Routing -IncludeManagementTools
|
||||
</pre>
|
||||
```
|
||||
|
||||
30. Before configuring the routing service that was just installed, verify that network interfaces were added to SRV1 in the right order, resulting in an interface alias of "Ethernet" for the private interface, and an interface alias of "Ethernet 2" for the public interface. Also verify that the external interface has a valid external DHCP IP address lease.
|
||||
|
||||
To view a list of interfaces, associated interface aliases, and IP addresses on SRV1, type the following Windows PowerShell command. Example output of the command is also shown below:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Get-NetAdapter | ? status -eq ‘up’ | Get-NetIPAddress -AddressFamily IPv4 | ft IPAddress, InterfaceAlias
|
||||
|
||||
IPAddress InterfaceAlias
|
||||
--------- --------------
|
||||
10.137.130.118 Ethernet 2
|
||||
192.168.0.2 Ethernet
|
||||
</pre>
|
||||
```
|
||||
|
||||
In this example, the poc-internal network interface at 192.168.0.2 is associated with the "Ethernet" interface and the Internet-facing poc-external interface is associated with the "Ethernet 2" interface. If your interfaces are different, you must adjust the commands provided in the next step appropriately to configure routing services. Also note that if the "Ethernet 2" interface has an IP address in the 192.168.0.100-105 range then it likely is getting a DHCP lease from DC1 instead of your corporate network. If this is the case, you can try removing and re-adding the second network interface from the SRV1 VM through its Hyper-V settings.
|
||||
|
||||
@ -857,37 +897,38 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
|
||||
31. To configure SRV1 with routing capability for the PoC network, type or paste the following commands at an elevated Windows PowerShell prompt on SRV1:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Install-RemoteAccess -VpnType Vpn
|
||||
cmd /c netsh routing ip nat install
|
||||
cmd /c netsh routing ip nat add interface name="Ethernet 2" mode=FULL
|
||||
cmd /c netsh routing ip nat add interface name="Ethernet" mode=PRIVATE
|
||||
cmd /c netsh routing ip nat add interface name="Internal" mode=PRIVATE
|
||||
</pre>
|
||||
```
|
||||
|
||||
32. The DNS service on SRV1 also needs to resolve hosts in the `contoso.com` domain. This can be accomplished with a conditional forwarder. Open an elevated Windows PowerShell prompt on SRV1 and type the following command:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Add-DnsServerConditionalForwarderZone -Name contoso.com -MasterServers 192.168.0.1
|
||||
</pre>
|
||||
```
|
||||
|
||||
33. In most cases, this completes configuration of the PoC network. However, if your corporate network has a firewall that filters queries from local DNS servers, you will also need to configure a server-level DNS forwarder on SRV1 to resolve Internet names. To test whether or not DNS is working without this forwarder, try to reach a name on the Internet from DC1 or PC1, which are only using DNS services on the PoC network. You can test DNS with the ping command, for example:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
ping www.microsoft.com
|
||||
</pre>
|
||||
```
|
||||
|
||||
If you see "Ping request could not find host `www.microsoft.com`" on PC1 and DC1, but not on SRV1, then you will need to configure a server-level DNS forwarder on SRV1. To do this, open an elevated Windows PowerShell prompt on SRV1 and type the following command.
|
||||
|
||||
**Note**: This command also assumes that "Ethernet 2" is the external-facing network adapter on SRV1. If the external adapter has a different name, replace "Ethernet 2" in the command below with that name:
|
||||
> [!NOTE]
|
||||
> This command also assumes that "Ethernet 2" is the external-facing network adapter on SRV1. If the external adapter has a different name, replace "Ethernet 2" in the command below with that name:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Add-DnsServerForwarder -IPAddress (Get-DnsClientServerAddress -InterfaceAlias "Ethernet 2").ServerAddresses
|
||||
</pre>
|
||||
```
|
||||
|
||||
34. If DNS and routing are both working correctly, you will see the following on DC1 and PC1 (the IP address might be different, but that is OK):
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
PS C:\> ping www.microsoft.com
|
||||
|
||||
Pinging e2847.dspb.akamaiedge.net [23.222.146.170] with 32 bytes of data:
|
||||
@ -900,15 +941,15 @@ The second Windows Server 2012 R2 VHD needs to be expanded in size from 40GB to
|
||||
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
|
||||
Approximate round trip times in milli-seconds:
|
||||
Minimum = 1ms, Maximum = 3ms, Average = 2ms
|
||||
</pre>
|
||||
```
|
||||
|
||||
35. Verify that all three VMs can reach each other, and the Internet. See [Appendix A: Verify the configuration](#appendix-a-verify-the-configuration) for more information.
|
||||
36. Lastly, because the client computer has different hardware after copying it to a VM, its Windows activation will be invalidated and you might receive a message that you must activate Windows in 3 days. To extend this period to 30 days, type the following commands at an elevated Windows PowerShell prompt on PC1:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
runas /noprofile /env /user:administrator@contoso.com "cmd /c slmgr -rearm"
|
||||
Restart-Computer
|
||||
</pre>
|
||||
```
|
||||
|
||||
This completes configuration of the starting PoC environment. Additional services and tools are installed in subsequent guides.
|
||||
|
||||
@ -918,7 +959,7 @@ Use the following procedures to verify that the PoC environment is configured pr
|
||||
|
||||
1. On DC1, open an elevated Windows PowerShell prompt and type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Get-Service NTDS,DNS,DHCP
|
||||
DCDiag -a
|
||||
Get-DnsServerResourceRecord -ZoneName contoso.com -RRType A
|
||||
@ -927,7 +968,7 @@ Use the following procedures to verify that the PoC environment is configured pr
|
||||
Get-DhcpServerInDC
|
||||
Get-DhcpServerv4Statistics
|
||||
ipconfig /all
|
||||
</pre>
|
||||
```
|
||||
|
||||
**Get-Service** displays a status of "Running" for all three services.<BR>
|
||||
**DCDiag** displays "passed test" for all tests.<BR>
|
||||
@ -940,13 +981,13 @@ Use the following procedures to verify that the PoC environment is configured pr
|
||||
|
||||
2. On SRV1, open an elevated Windows PowerShell prompt and type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
Get-Service DNS,RemoteAccess
|
||||
Get-DnsServerForwarder
|
||||
Resolve-DnsName -Server dc1.contoso.com -Name www.microsoft.com
|
||||
ipconfig /all
|
||||
netsh int ipv4 show address
|
||||
</pre>
|
||||
```
|
||||
|
||||
**Get-Service** displays a status of "Running" for both services.<BR>
|
||||
**Get-DnsServerForwarder** either displays no forwarders, or displays a list of forwarders you are required to use so that SRV1 can resolve Internet names.<BR>
|
||||
@ -956,13 +997,13 @@ Use the following procedures to verify that the PoC environment is configured pr
|
||||
|
||||
3. On PC1, open an elevated Windows PowerShell prompt and type the following commands:
|
||||
|
||||
<pre>
|
||||
```powershell
|
||||
whoami
|
||||
hostname
|
||||
nslookup www.microsoft.com
|
||||
ping -n 1 dc1.contoso.com
|
||||
tracert www.microsoft.com
|
||||
</pre>
|
||||
```
|
||||
|
||||
**whoami** displays the current user context, for example in an elevated Windows PowerShell prompt, contoso\administrator is displayed.<BR>
|
||||
**hostname** displays the name of the local computer, for example W7PC-001.<BR>
|
||||
|
Reference in New Issue
Block a user