wonderdog
Hi ,
did you use the Windows Virtual Desktop from marketplace ?
Make sure that your DC in Azure or ADDS is on the same DNS , subnet of you Hosted Pool VM's.
Also you should see you VM that is joined to domain in the OU :
another think to check if you account that you signed in to access the Host Pool is member of :
TenantName HostPoolName AppGroupName you can check it with PowerShell of course you need to connect first to your tenant Pool with this command :
$myTenantName = <tenantname > $hostpoolname = <hostpoolname > $appgroupname = <appgroupname >
$brokerurl = "https://rdbroker.wvd.microsoft.com" $aadTenantId = <Tenant ID> $azureSubscriptionId = <your subscriptionID > Add-RdsAccount -DeploymentUrl $brokerurl
after connecting just validate if your account is member of :
$myTenantName = <tenantname > $hostpoolname = <hostpoolname > $appgroupname = <appgroupname >
with this command :
To validate :
Get-RdsAppGroupUser -TenantName <tenantname > -HostPoolName <hostpoolname > -AppGroupName <appgroupname > -UserPrincipalName <your upn name>
To add as member :
Add-RdsAppGroupUser -TenantName <tenantname > -HostPoolName <hostpoolname > -AppGroupName <appgroupname > -UserPrincipalName <your upn name>
On my labs i'm using ADDS as DC I have AD connect that synced from AD-On premises to AD azure with Sync password options , also you need to make sure that the Password Hash is Synced from AD azure to ADDS with this command :
$adConnector = <damainname>
$azureadConnector = <tenant name> - AAD"
Import-Module adsync
$c = Get-ADSyncConnector -Name $adConnector
$p = New-Object Microsoft.IdentityManagement.PowerShell.ObjectModel.ConfigurationParameter "Microsoft.Synchronize.ForceFullPasswordSync", String, ConnectorGlobal, $null, $null, $null
$p.Value = 1
$c.GlobalParameters.Remove($p.Name)
$c.GlobalParameters.Add($p)
$c = Add-ADSyncConnector -Connector $c
Set-ADSyncAADPasswordSyncConfiguration -SourceConnector $adConnector -TargetConnector $azureadConnector -Enable $false
Set-ADSyncAADPasswordSyncConfiguration -SourceConnector $adConnector -TargetConnector $azureadConnector -Enable $true
for more info please let me know ;)