Skip to content

Commit a2d2d8e

Browse files
authored
Merge pull request #114780 from Heidilohr/work-app-attach
Update based on Stefan's pull request
2 parents 1729222 + c191db5 commit a2d2d8e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

articles/virtual-desktop/app-attach.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: Heidilohr
66

77
ms.service: virtual-desktop
88
ms.topic: conceptual
9-
ms.date: 12/14/2019
9+
ms.date: 05/11/2020
1010
ms.author: helohr
1111
manager: lizross
1212
---
@@ -37,7 +37,7 @@ First, you need to get the OS image you'll use for the MSIX app. To get the OS i
3737
>[!NOTE]
3838
>You must be member of the Windows Insider program to access the Windows Insider portal. To learn more about the Windows Insider program, check out our [Windows Insider documentation](/windows-insider/at-home/).
3939
40-
2. Scroll down to the **Select edition** section and select **Windows 10 Insider Preview Enterprise (FAST) – Build 19035** or later.
40+
2. Scroll down to the **Select edition** section and select **Windows 10 Insider Preview Enterprise (FAST) – Build 19041** or later.
4141

4242
3. Select **Confirm**, then select the language you wish to use, and then select **Confirm** again.
4343

@@ -70,6 +70,14 @@ rem Disable Windows Update:
7070
sc config wuauserv start=disabled
7171
```
7272

73+
After you've disabled automatic updates, you must enable Hyper-V because you'll be using the Mound-VHD command to stage and and Dismount-VHD to destage.
74+
75+
```powershell
76+
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
77+
```
78+
>[!NOTE]
79+
>This change will require that you restart the virtual machine.
80+
7381
Next, prepare the VM VHD for Azure and upload the resulting VHD disk to Azure. To learn more, see [Prepare and customize a master VHD image](set-up-customize-master-image.md).
7482

7583
Once you've uploaded the VHD to Azure, create a host pool that's based on this new image by following the instructions in the [Create a host pool by using the Azure Marketplace](create-host-pools-azure-marketplace.md) tutorial.
@@ -253,7 +261,7 @@ Before you update the PowerShell scripts, make sure you have the volume GUID of
253261
254262
{
255263
256-
Mount-Diskimage -ImagePath $vhdSrc -NoDriveLetter -Access ReadOnly
264+
Mount-VHD -Path $vhdSrc -NoDriveLetter -ReadOnly
257265
258266
Write-Host ("Mounting of " + $vhdSrc + " was completed!") -BackgroundColor Green
259267

0 commit comments

Comments
 (0)