Mar 24 2020 01:07 PM
Hey all, we pushed the WVD client via intune in the user context but today when users received notification that a client update was available, they were prompted for credentials to update.
Checking the install it was installed to program files. It was my understanding that it should have been deployed to the users profile with the below settings.
Any help greatly appreciated
Deployment setting
Mar 25 2020 11:13 AM
Hi @Jonny5 , did you follow the installation options guidance to deploy the MSI per-user instead of per-device?
Hope this helps,
David
Jun 10 2020 10:11 AM
@DavidBelanger Importing the official MSI to Intune, and using the following recommended arguments, still installs the client to "C:\Program Files\Remote Desktop\msrdcw.exe", forcing the users to elevate to admin to be able to update it.
We had to wrap it into a scriptbased installation and run it in user context to be able to install as the logged on User.
Anyone else had issues with this, or a better way of installing it as user?
Jun 11 2020 01:36 PM
I have the same issue with Intune deployment. I've also tried wrapping it as a win32 app, but that still doesn't work. This glitch makes updates very disruptive to users. @Ola Holtberget
Nov 04 2020 05:32 AM
@sbuntun did you ever manage to get this working? Running into this same issue.
Nov 04 2020 05:38 AM
@TC-RichG Yes, use this for the client to be installed in user-context:
"C:\Temp\RDClient.msi" ALLUSERS="2" MSIINSTALLPERUSER="1" /qn /passive /log c:\temp\RDClient.log
Nov 10 2020 04:18 AM
@Ola Holtberget : could you please post a screenshot of the exact settings in enpoint manager.
i tried all suggestions here but still having same problem. thank you
Dec 17 2020 01:51 PM
@Ola Holtberget would be great if you could share a screenshot of the exact settings in Endpoint manager. Thanks.
Dec 19 2020 02:49 AM - edited Dec 19 2020 02:51 AM
@KWalder100 Since we need the RDClient installed quickly for all users logging on to any laptop, we ended up creating a Scheduled Task that installs the client upon logon of all users.
The Intune-part is just a Win32 app installing the scheduled task.
The Scheduled Task is set to "Run as user", and starts a script to install the client as the user, if the client is not already installed:
msiexec /i "C:\Temp\RDClient.msi" ALLUSERS="2" MSIINSTALLPERUSER="1" /qn /passive /log c:\temp\RDClient.log