Skip to content

Commit 8272129

Browse files
committed
AVD MMR changed policy to registry
1 parent 02217a3 commit 8272129

File tree

1 file changed

+49
-28
lines changed

1 file changed

+49
-28
lines changed

articles/virtual-desktop/multimedia-redirection-video-playback-calls.md

Lines changed: 49 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ To enable the multimedia redirection browser extension using the Microsoft Edge
371371

372372
## Common policy configuration parameters
373373

374-
The following sections show some examples of policy configuration parameters for the browser you can use to manage the multimedia redirection browser extension that are common for both video playback and call redirection. You can use these examples as part of the steps in [Enable and manage the browser extension centrally](#enable-and-manage-the-browser-extension-centrally). Combine these examples with the parameters you require for your users.
374+
The following sections show some examples of policy configuration parameters for the browser extension that are common for both video playback and call redirection. You can use these examples as part of the steps in [Enable and manage the browser extension centrally](#enable-and-manage-the-browser-extension-centrally). Combine these examples with the parameters you require for your users.
375375

376376
> [!NOTE]
377377
> The following examples are for Microsoft Edge. For Google Chrome:
@@ -395,24 +395,37 @@ The following example installs the extension and shows the extension icon on the
395395
}
396396
```
397397

398-
### Show or hide advanced settings button
398+
### Hide advanced settings button
399399

400400
You can show or hide the advanced settings button to users in the extension. By default, the advanced settings button is shown and users have access to toggle each setting on or off. If you hide the advanced settings button, users can still collect logs.
401401

402402
Here's what the extension looks like when the advanced settings button is hidden:
403403

404404
:::image type="content" source="./media/multimedia-redirection/browser-extension-loaded-advanced-settings-hidden.png" alt-text="A screenshot of the browser extension advanced settings hidden.":::
405405

406-
This example installs the extension and hides the advanced settings button. Alternatively, to show the advanced settings button, set `HideAdvancedSettings` to `false`.
406+
To hide the advanced settings button, you need to set the following registry value on the computers providing a remote session, depending on the browser you're using:
407407

408-
```json
409-
{
410-
"joeclbldhdmoijbaagobkhlpfjglcihd": {
411-
"installation_mode": "force_installed",
412-
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
413-
"HideAdvancedSettings": true
414-
}
415-
}
408+
- For Microsoft Edge:
409+
410+
- **Key**: `HKLM\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\joeclbldhdmoijbaagobkhlpfjglcihd\policy`
411+
- **Name**: `HideAdvancedSettings`
412+
- **Type**: `REG_DWORD`
413+
- **Data**: `1`
414+
415+
- For Google Chrome:
416+
417+
- **Key**: `HKLM\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\lfmemoeeciijgkjkgbgikoonlkabmlno\policy`
418+
- **Name**: `HideAdvancedSettings`
419+
- **Type**: `REG_DWORD`
420+
- **Data**: `1`
421+
422+
If you set **Data** to `0`, the advanced settings button is shown.
423+
424+
You can configure the registry using an enterprise deployment tool such as Intune, Configuration Manager, or Group Policy. Alternatively, to set this registry value using PowerShell, open PowerShell as an administrator and run the following commands. This example uses the registry key for Microsoft Edge:
425+
426+
```powershell
427+
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\joeclbldhdmoijbaagobkhlpfjglcihd\policy" -Force
428+
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\joeclbldhdmoijbaagobkhlpfjglcihd\policy" -Name HideAdvancedSettings -PropertyType DWORD -Value 1 -Force
416429
```
417430

418431
## Browser extension status
@@ -498,7 +511,7 @@ To use multimedia redirection with Teams live events, you must use the web versi
498511

499512
### Advanced settings for video playback redirection
500513

501-
The following advanced settings are available for video playback redirection. You can also hide the advanced settings button from users; for more information, see [Show or hide advanced settings button](#show-or-hide-advanced-settings-button).
514+
The following advanced settings are available for video playback redirection. You can also hide the advanced settings button from users; for more information, see [Hide advanced settings button](#hide-advanced-settings-button).
502515

503516
- **Enable video playback for all sites (beta)**: By default, video playback redirection is limited to the sites listed in [Websites for video playback redirection](#websites-for-video-playback-redirection). You can enable video playback redirection for all sites to test the feature with other web pages. This setting is experimental and might not work as expected.
504517

@@ -567,7 +580,7 @@ After you enable multimedia redirection, you can test it by visiting a web page
567580

568581
### Enable call redirection for specific domains
569582

570-
If you configure multimedia redirection using Microsoft Intune or Group Policy, you can enable one or more domains for call redirection. This parameter enables you to specify extra sites in addition to the [Websites for call redirection](#websites-for-call-redirection). The supported format is the fully qualified domain name (FQDN) with up to one subdirectory. The following formats are supported:
583+
If you configure multimedia redirection using Microsoft Intune or Group Policy, you can enable one or more domains for call redirection. This parameter enables you to specify extra sites in addition to the [Websites for call redirection](#websites-for-call-redirection). The supported format is to specify the URL as the fully qualified domain name (FQDN) with up to one subdirectory. The following formats are supported:
571584

572585
- `contoso.com`
573586
- `conferencing.contoso.com`
@@ -579,23 +592,31 @@ The following formats aren't supported:
579592
- `contoso.com/conferencing/groups`
580593
- `contoso.com/`
581594

582-
> [!NOTE]
583-
> The following example is for Microsoft Edge. For Google Chrome:
584-
>
585-
> - Change `joeclbldhdmoijbaagobkhlpfjglcihd` to `lfmemoeeciijgkjkgbgikoonlkabmlno`.
586-
> - Change the `update_url` to `https://clients2.google.com/service/update2/crx`.
595+
For multiple sites, separate each site with a semicolon `;`, for example, `contoso.com;conferencing.contoso.com;contoso.com/conferencing`.
587596

588-
This example installs the extension and adds calling sites `contoso.com`, `conferencing.contoso.com`, and `contoso.com/conferencing`, which are separated by a semicolon `;`:
597+
To add extra sites for call redirection, you need to set the following registry value on the computers providing a remote session, depending on the browser you're using. Replace `<URLs>` with the sites you want to enable.
589598

590-
```json
591-
{
592-
"joeclbldhdmoijbaagobkhlpfjglcihd": {
593-
"installation_mode": "force_installed",
594-
"AllowedCallRedirectionSites": "contoso.com;conferencing.contoso.com;contoso.com/conferencing",
595-
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
596-
"toolbar_state": "default_shown"
597-
}
598-
}
599+
- For Microsoft Edge:
600+
601+
- **Key**: `HKLM\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\joeclbldhdmoijbaagobkhlpfjglcihd\policy`
602+
- **Name**: `AllowedCallRedirectionSites`
603+
- **Type**: `REG_SZ`
604+
- **Data**: `<URLs>`
605+
606+
- For Google Chrome:
607+
608+
- **Key**: `HKLM\SOFTWARE\Policies\Google\Chrome\3rdparty\extensions\lfmemoeeciijgkjkgbgikoonlkabmlno\policy`
609+
- **Name**: `AllowedCallRedirectionSites`
610+
- **Type**: `REG_SZ`
611+
- **Data**: `<URLs>`
612+
613+
If you set **Data** to `0`, the advanced settings button is shown.
614+
615+
You can configure the registry using an enterprise deployment tool such as Intune, Configuration Manager, or Group Policy. Alternatively, to set this registry value using PowerShell, open PowerShell as an administrator and run the following commands. This example uses the registry key for Microsoft Edge. Replace `<URLs>` with the sites you want to enable.
616+
617+
```powershell
618+
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\joeclbldhdmoijbaagobkhlpfjglcihd\policy" -Force
619+
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\3rdparty\extensions\joeclbldhdmoijbaagobkhlpfjglcihd\policy" -Name AllowedCallRedirectionSites -PropertyType String -Value "<URLs>" -Force
599620
```
600621

601622
### Enable call redirection for all sites for testing

0 commit comments

Comments
 (0)