Forum Discussion
azure virtual desktop: adding users after initial deployment
Hi Suleyman Ali
It will depends on how much users have you configured on the initial deployment of the VDI, how much licences do you have, how much machines did you configured on the initial deployment and the method if it were user by machine or pool.
But to add more users, you can do this by the office 365 portal or azure active directory.
Hope it helps.
RodNetthanks. we looked at all the documentation and we were able to do this via powershell using add-rdsappgroupuser
- Amar619Aug 20, 2019Copper Contributor
Suleyman Ali : Can you tell me more on this, I have deployed the Azure VDI successfully, also I can login to the VDI with global admin user ID and pass. I want to add 2 more users to it. max capacity of the pool is 4 . Thanks in advance.
- RodNetAug 20, 2019Brass ContributorHi Amar619
If you have deployd succesfully the WVDI and whant to add more users to use Just follow the steps:
1- The User must exist on Azure AD with a valid UPN, this will be used to give access to VDI.
2 - Open Power Shell and Run the following cmdlet to sign in to the Windows Virtual Desktop environment:
Add-RdsAccount -DeploymentUrl "https://rdbroker.wvd.microsoft.com"
3- Add users to the desktop application group by using this cmdlet:
Add-RdsAppGroupUser
-TenantName <yourtenantname>
-Hostpoolname <hostpoolname>
- AppGroupName "Desktop Application Group" -UserPrincipalName <userupn ex:user@contoso.com>
The references for this cmdlets and steps are described on:
https://docs.microsoft.com/en-us/azure/virtual-desktop/create-host-pools-azure-marketplace#optional-assign-additional-users-to-the-desktop-application-group
I Hope this could help you.
😀
Remind to pass the same USERUPN for the user on Azure Active Directora.- Aseem NayarDec 05, 2019Copper Contributor
RodNet Is there a way to add via a group or do you have to add each user individually?
What do you do in the case of a large deployment?