<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Windows Virtual Desktop Archives - Erjen Rijnders</title>
	<atom:link href="https://erjenrijnders.nl/category/windows-virtual-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>https://erjenrijnders.nl/category/windows-virtual-desktop/</link>
	<description>Microsoft Azure/EMS blog</description>
	<lastBuildDate>Sat, 29 Feb 2020 11:48:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>
	<item>
		<title>How to manage Windows Virtual Desktop</title>
		<link>https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/</link>
					<comments>https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Fri, 03 May 2019 12:36:48 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Windows Virtual Desktop]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75994</guid>

					<description><![CDATA[<p>If you want to setup WVD, check this post. Currently, you can only manage WVD through PowerShell. Here you can [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/">How to manage Windows Virtual Desktop</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you want to setup WVD, <a rel="noreferrer noopener" aria-label="check my previous post. (opens in a new tab)" href="https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/" target="_blank"><strong>check this post.</strong></a></p>



<p>Currently, you can only manage WVD through PowerShell. Here you can see the most common commands to manage your enviroment.</p>



<p>You can only assign a user to a desktop pool or app pool, not both. Neither can a desktop pool contain apps (like it isn&#8217;t possible in RDS as well). By default, you create a desktop pool, let&#8217;s add an app pool now by running the commands below. Always start with this command, signing in, in the WVD-enviroment.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">&nbsp;Add-RdsAccount -DeploymentUrl &quot;https://rdbroker.wvd.microsoft.com&quot;</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading"> Add a new WVD App Group</h2>



<p>Run these commands to add a new app group.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$myTenantName = &quot;mytenantname&quot; #If you don't know, try Get-RdsTenant<br />
$hostpoolname = &quot;myhostpoolname&quot; #If you don't know, try Get-RdsHostPool<br />
$rdsremoteappgroupname = &quot;remoteappgroupname&quot;<br />
Get-RdsAppGroup $myTenantName $hostpoolname<br />
New-RdsAppGroup -TenantName $myTenantName -HostPoolName $hostpoolname -Name $rdsremoteappgroupname -ResourceType RemoteApp</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading">Find applications you can publish</h2>



<p>If you want to find apps currently able to publish to your new app group, run this command. It will search on your session hosts for apps.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Get-RdsStartMenuApp -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading">Publish applications</h2>



<p>For example, this is how you publish Internet Explorer and Registry Editor.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">New-RdsRemoteApp -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -Name &quot;Internet Explorer&quot; -FilePath &quot;C:\Program Files\internet explorer\iexplore.exe&quot; -IconPath &quot;C:\Program Files\internet explorer\iexplore.exe&quot;<br />
New-RdsRemoteApp -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -Name &quot;Registry Editor&quot; -AppAlias &quot;registryeditor&quot;</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading">Add users to your new app group</h2>



<p>Adding users is also very simple, just run this command.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Add-RdsAppGroupUser -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -UserPrincipalName &amp;lt;upn&gt;</div></td></tr></tbody></table></div>

</pre>



<p>If you want to publish more app groups, follow the steps above again. Remember, a user can only be a member of the App Group, or the Desktop Group. If you want to assign the user to the app group while being a member of the desktop group, remove it first with this command:</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Remove-RdsAppGroupUser -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $rdsremoteappgroupname -UserPrincipalName &amp;lt;upn&gt;</div></td></tr></tbody></table></div>

</pre>
<p>The post <a href="https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/">How to manage Windows Virtual Desktop</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How-to deploy Windows Virtual Desktop in Azure</title>
		<link>https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/</link>
					<comments>https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/#comments</comments>
		
		<dc:creator><![CDATA[Erjen]]></dc:creator>
		<pubDate>Thu, 04 Apr 2019 08:59:42 +0000</pubDate>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Windows Virtual Desktop]]></category>
		<category><![CDATA[Windows 10 Virtual Desktop]]></category>
		<category><![CDATA[Windows Virtual desktop]]></category>
		<guid isPermaLink="false">http://erjenrijnders.nl/?p=75927</guid>

					<description><![CDATA[<p>If you want to know how to manage WVD, check this post. Index 1. Add RDS Tenant2. Add Service Principal3. [&#8230;]</p>
<p>The post <a href="https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/">How-to deploy Windows Virtual Desktop in Azure</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you want to know how to manage WVD, <a rel="noreferrer noopener" aria-label="check this post. (opens in a new tab)" href="https://erjenrijnders.nl/2019/05/03/how-to-manage-windows-virtual-desktop/" target="_blank"><strong>check this post.</strong></a></p>



<h2 class="wp-block-heading"><strong>Index</strong></h2>



<p><a href="#Add-RDS-tenant">1. Add RDS Tenant</a><br><a href="#Add-Service-Principal">2. Add Service Principal</a><br><a href="#Assign-permissions">3. Assign permissions</a><br><a href="#Deploy-WVD-through-marketplace">4. Deploy WVD through marketplace</a><br><a href="#Open-HTML5-webclient">5. Open HTML5 webclient</a><br><a href="#Add-users-to-your-desktop">6. Add users to your desktop</a></p>



<p></p>



<p>I see a lot of people struggle deploying Windows Virtual desktop. Most people face this error message:</p>



<pre class="wp-block-preformatted">VM has reported a failure when processing extension 'dscextension'. Error message: \\\"DSC Configuration 'FirstSessionHost' completed with error(s). Following are the first few: PowerShell DSC resource MSFT_ScriptResource failed to execute Set-TargetResource functionality with error message: User is not authorized to query the management service</pre>



<p>This is because you need to create a service principal with the correct permissions. A normal user will work as well, but it&#8217;s failing too many times for people. <br>Following these steps should get you through the deployment.<br><br></p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>Keep in mind that the user deploying your WVD VMs to your domain, also needs the Owner role on your Azure Subscription! Because it needs to be able to run some Powershell DSC commands.</em></strong></p><p><em>NOTE:  User &#8216;Cloudcrusader&#8217; suggests in the comments that it should work with  the &#8216;Virtual Machine Contributor&#8217; role only as well.</em></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>Start fresh. Delete all WVD tenants created before. Check if a tenant still exists with Get-RdsTenant. </strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong><em>This post is not going to help you, configuring WVD with AAD DS. It should be possible though, someone was able to configure it succesfully using <font color="#4f67c1"><a href="http://www.rebeladmin.com/2019/04/step-step-guide-azure-windows-virtual-desktop-preview/" target="_blank" rel="noreferrer noopener" aria-label="this post (opens in a new tab)"><font color="#4f67c1">this post</font></a></font>.</em></strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>Remember, don&#8217;t use an MFA enabled account. It doesn&#8217;t work.</strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>Also try: <a href="https://docs.microsoft.com/en-us/powershell/module/windowsvirtualdesktop/get-rdsdiagnosticactivities" rel="noopener noreferrer" target="_blank">Get-RdsDiagnosticActivities</a>. Others succeeded finding the root cause with that command</strong></p></blockquote>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p><strong>I have deployed WVD multiple times already, so that&#8217;s how I know this works. If it doesn&#8217;t work for you, let me know, maybe I can help you.</strong></p></blockquote>



<p><br>Run through step one of the Microsoft documentation:<br><a rel="noreferrer noopener" aria-label="https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory (opens in a new tab)" href="https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory" target="_blank">https://docs.microsoft.com/en-us/azure/virtual-desktop/tenant-setup-azure-active-directory</a><br></p>



<h2 class="wp-block-heading" id="Add-RDS-tenant">Add RDS tenant</h2>



<p>Run these commands to add the RDS tenant.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;"># Don't change the deploymenturl<br />
Add-RdsAccount -DeploymentUrl &quot;https://rdbroker.wvd.microsoft.com&quot;<br />
# Use any name for your tenant, get your ID from Azure portal &gt; Azure Active Directory &gt; Properties &gt; Directory ID. To get your SubscriptionID, go to Azure Portal &gt; All services &gt; subscriptions &gt; click the subscription where the VM's will reside and copy the subscription ID:<br />
New-RdsTenant -Name YourTenantName -AadTenantId YourAzureADTenantID -AzureSubscriptionId YourSubscriptionID</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading" id="Add-Service-Principal">Add Service Principal</h2>



<p>Next, follow these steps. Never change the <strong>Default Tenant Group</strong>, as per the Microsoft docs.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">$myTenantGroupName = &quot;Default Tenant Group&quot;<br />
$myTenantName = &quot;tenantname&quot; #As you used in the previous step<br />
$hostpoolname = &quot;Hostpoolname&quot;<br />
<br />
# create the service principal:<br />
$aadContext = Connect-AzureAD<br />
$svcPrincipal = New-AzureADApplication -AvailableToOtherTenants $true -DisplayName &quot;Windows Virtual Desktop Svc Principal&quot;<br />
$svcPrincipalCreds = New-AzureADApplicationPasswordCredential -ObjectId $svcPrincipal.ObjectId<br />
<br />
# Don't change the URL below.<br />
Add-RdsAccount -DeploymentUrl &quot;https://rdbroker.wvd.microsoft.com&quot; <br />
Set-RdsContext -TenantGroupName $myTenantGroupName<br />
New-RdsHostPool -TenantName $myTenantName -name $hostpoolname</div></td></tr></tbody></table></div>

</pre>



<h2 class="wp-block-heading" id="Assign-permissions">Assign permissions</h2>



<p>Now below is the most important step, that&#8217;s where you assign the service principal permissions to the RDS environment. If you do this correctly, you can deploy the WVD template from the Azure Marketplace, without errors.</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">New-RdsRoleAssignment -RoleDefinitionName &quot;RDS Owner&quot; -ApplicationId $svcPrincipal.AppId -TenantGroupName $myTenantGroupName -TenantName $myTenantName -HostPoolName $hostpoolname</div></td></tr></tbody></table></div>

</pre>



<p>Go to the Azure Portal and open the app just created and create your own key:<br><strong>Azure Portal &gt; app registrations &gt; Windows Virtual Desktop Svc Principal &gt; Settings &gt; Keys.</strong><br>Create your own key and save the value During the next step, deploying Windows Virtual Desktop from the marketplace, in step 3 of that template you need this password.</p>



<h2 class="wp-block-heading" id="Deploy-WVD-through-marketplace">Deploy WVD through marketplace</h2>



<p>Next step is to follow this Microsoft doc:<br><a href="https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace">https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace</a> <br>You should be able to get passed the error as mentioned above, also with help from these screenshots below.</p>



<figure class="wp-block-image is-resized"><img fetchpriority="high" decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop.png" alt="" class="wp-image-75930" width="560" height="358" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop.png 747w, https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop-300x192.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/04/create-windows-virtual-desktop-600x383.png 600w" sizes="(max-width: 560px) 100vw, 560px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1.png" alt="" class="wp-image-75943" width="469" height="650" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1.png 625w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1-216x300.png 216w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-1-1-600x832.png 600w" sizes="(max-width: 469px) 100vw, 469px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-2.png" alt="" class="wp-image-75932" width="449" height="638" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-2.png 598w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-2-211x300.png 211w" sizes="(max-width: 449px) 100vw, 449px" /></figure>



<p>If you keep <strong>No </strong>selected below <strong>Specifiy domain or OU</strong>, it&#8217;s going to try joining the domain behind the @, used below <strong>AD domain join UPN</strong>. So in the example below it will use <strong>yourdomain.com</strong>. If your domain is <strong>ad.yourdomain.com</strong>, set <strong>Yes</strong> below the <strong>Specifiy domain or OU</strong>.<br><br></p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3.png" alt="" class="wp-image-75933" width="467" height="647" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3.png 623w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3-217x300.png 217w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-3-600x830.png 600w" sizes="(max-width: 467px) 100vw, 467px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4.png" alt="" class="wp-image-75934" width="455" height="652" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4.png 606w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4-209x300.png 209w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-4-600x860.png 600w" sizes="(max-width: 455px) 100vw, 455px" /></figure>



<p>Finally, your deployment is succesful as you can see in the screenshot below. It took about 9 minutes for the DSCextension completed, per VM:</p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-1024x461.png" alt="" class="wp-image-75935" width="768" height="346" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-1024x461.png 1024w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-300x135.png 300w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-768x345.png 768w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5-600x270.png 600w, https://erjenrijnders.nl/wp-content/uploads/2019/04/step-5.png 1294w" sizes="(max-width: 768px) 100vw, 768px" /></figure>



<h2 class="wp-block-heading" id="Open-HTML5-webclient">Open HTML5 webclient</h2>



<p>Now go to the HTML5 client to open your desktop: <a href="https://rdweb.wvd.microsoft.com/webclient/index.html">https://rdweb.wvd.microsoft.com/webclient/index.html</a></p>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/your-session-host.png" alt="" class="wp-image-75936" width="227" height="170" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/your-session-host.png 302w, https://erjenrijnders.nl/wp-content/uploads/2019/04/your-session-host-300x226.png 300w" sizes="(max-width: 227px) 100vw, 227px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/acces-local-resources.png" alt="" class="wp-image-75937" width="444" height="209" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/acces-local-resources.png 592w, https://erjenrijnders.nl/wp-content/uploads/2019/04/acces-local-resources-300x141.png 300w" sizes="(max-width: 444px) 100vw, 444px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-your-desktop.png" alt="" class="wp-image-75938" width="437" height="221" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-your-desktop.png 583w, https://erjenrijnders.nl/wp-content/uploads/2019/04/start-your-desktop-300x152.png 300w" sizes="(max-width: 437px) 100vw, 437px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-wvd.png" alt="" class="wp-image-75939" width="434" height="209" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/start-wvd.png 579w, https://erjenrijnders.nl/wp-content/uploads/2019/04/start-wvd-300x145.png 300w" sizes="(max-width: 434px) 100vw, 434px" /></figure>



<figure class="wp-block-image is-resized"><img decoding="async" src="https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd.png" alt="" class="wp-image-75940" width="560" height="661" srcset="https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd.png 747w, https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd-254x300.png 254w, https://erjenrijnders.nl/wp-content/uploads/2019/04/started-wvd-600x708.png 600w" sizes="(max-width: 560px) 100vw, 560px" /></figure>



<h2 class="wp-block-heading" id="Add-users-to-your-desktop">Add users to your desktop</h2>



<p>As a final step, add users to your desktop:</p>



<pre class="wp-block-code">

<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">Add-RdsAppGroupUser -TenantName $myTenantName -HostPoolName $hostpoolname -AppGroupName $appgroupname -UserPrincipalName upn</div></td></tr></tbody></table></div>

</pre>
<p>The post <a href="https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/">How-to deploy Windows Virtual Desktop in Azure</a> appeared first on <a href="https://erjenrijnders.nl">Erjen Rijnders</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://erjenrijnders.nl/2019/04/04/how-to-deploy-windows-virtual-desktop-in-azure/feed/</wfw:commentRss>
			<slash:comments>47</slash:comments>
		
		
			</item>
	</channel>
</rss>
