From: Michael Kaply <345868+mkaply@users.noreply.github.com>
Date: Mon, 18 Aug 2025 18:41:56 +0000 (-0400)
Subject: Update policies for screen sharing
X-Git-Tag: v7.2~6^2~1
X-Git-Url: https://git.p6c8.net/policy-templates.git/commitdiff_plain/68b45701c731d19398a5295ce79c104d8c55b08e?ds=sidebyside
Update policies for screen sharing
---
diff --git a/docs/index.md b/docs/index.md
index 9cbf516..db4428f 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -4863,9 +4863,9 @@ Set permissions associated with camera, microphone, location, notifications, aut
`Default` specifies the default value for Autoplay. block-audio-video is not supported on Firefox ESR 68.
-**Compatibility:** Firefox 62, Firefox ESR 60.2 (Autoplay added in Firefox 74, Firefox ESR 68.6, Autoplay Default/Locked added in Firefox 76, Firefox ESR 68.8, VirtualReality added in Firefox 80, Firefox ESR 78.2)\
+**Compatibility:** Firefox 62, Firefox ESR 60.2 (Autoplay added in Firefox 74, Firefox ESR 68.6, Autoplay Default/Locked added in Firefox 76, Firefox ESR 68.8, VirtualReality added in Firefox 80, Firefox ESR 78.2, ScreenShare added in Firefox 142, Firefox ESR 140.2)\
**CCK2 Equivalent:** N/A\
-**Preferences Affected:** `permissions.default.camera`, `permissions.default.microphone`, `permissions.default.geo`, `permissions.default.desktop-notification`, `media.autoplay.default`, `permissions.default.xr`
+**Preferences Affected:** `permissions.default.camera`, `permissions.default.microphone`, `permissions.default.geo`, `permissions.default.desktop-notification`, `media.autoplay.default`, `permissions.default.xr`, `permissions.default.screen`
#### Windows (GPO)
```
@@ -4898,7 +4898,11 @@ Software\Policies\Mozilla\Firefox\Permissions\VirtualReality\Allow\1 = "https://
Software\Policies\Mozilla\Firefox\Permissions\VirtualReality\Allow\2 = "https://example.com"
Software\Policies\Mozilla\Firefox\Permissions\VirtualReality\Block\1 = "https://example.edu"
Software\Policies\Mozilla\Firefox\Permissions\VirtualReality\BlockNewRequests = 0x1 | 0x0
-Software\Policies\Mozilla\Firefox\Permissions\VirtualReality\Locked = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\Permissions\ScreenShare\Allow\1 = "https://example.org"
+Software\Policies\Mozilla\Firefox\Permissions\ScreenShare\Allow\2 = "https://example.com"
+Software\Policies\Mozilla\Firefox\Permissions\ScreenShare\Block\1 = "https://example.edu"
+Software\Policies\Mozilla\Firefox\Permissions\ScreenShare\BlockNewRequests = 0x1 | 0x0
+Software\Policies\Mozilla\Firefox\Permissions\ScreenShare\Locked = 0x1 | 0x0
```
#### Windows (Intune)
OMA-URI:
@@ -5091,7 +5095,41 @@ Value (string):
```
OMA-URI:
```
-./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Permissions~Notifications/VirtualReality_Locked
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Permissions~VirtualReality/VirtualReality_Locked
+```
+Value (string):
+```
+ or
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Permissions~ScreenShare/ScreenShare_Allow
+```
+Value (string):
+```
+
+
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Permissions~ScreenShare/ScreenShare_Block
+```
+Value (string):
+```
+
+
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Permissions~ScreenShare/ScreenShare_BlockNewRequests
+```
+Value (string):
+```
+ or
+```
+OMA-URI:
+```
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~Permissions~ScreenShare/ScreenShare_Locked
```
Value (string):
```
@@ -5178,6 +5216,36 @@ Value (string):
Locked
|
+ VirtualReality
+
+ Allow
+
+ https://example.org
+
+ Block
+
+ https://example.edu
+
+ BlockNewRequests
+ |
+ Locked
+ |
+
+ ScreenShare
+
+ Allow
+
+ https://example.org
+
+ Block
+
+ https://example.edu
+
+ BlockNewRequests
+ |
+ Locked
+ |
+
```
@@ -5215,6 +5283,18 @@ Value (string):
"Block": ["https://example.edu"],
"Default": "allow-audio-video" | "block-audio" | "block-audio-video",
"Locked": true | false
+ },
+ "VirtualReality": {
+ "Allow": ["https://example.org"],
+ "Block": ["https://example.edu"],
+ "BlockNewRequests": true | false,
+ "Locked": true | false
+ },
+ "ScreenShare": {
+ "Allow": ["https://example.org"],
+ "Block": ["https://example.edu"],
+ "BlockNewRequests": true | false,
+ "Locked": true | false
}
}
}
diff --git a/linux/policies.json b/linux/policies.json
index d7fa4cc..368a016 100644
--- a/linux/policies.json
+++ b/linux/policies.json
@@ -262,7 +262,19 @@
"Block": ["https://example.edu"],
"Default": "allow-audio-video" | "block-audio" | "block-audio-video",
"Locked": true | false
- }
+ },
+ "VirtualReality": {
+ "Allow": ["https://example.org"],
+ "Block": ["https://example.edu"],
+ "BlockNewRequests": true | false,
+ "Locked": true | false
+ },
+ "ScreenShare": {
+ "Allow": ["https://example.org"],
+ "Block": ["https://example.edu"],
+ "BlockNewRequests": true | false,
+ "Locked": true | false
+ },
},
"PictureInPicture": {
"Enabled": true | false,
diff --git a/mac/org.mozilla.firefox.plist b/mac/org.mozilla.firefox.plist
index a898e63..8872e17 100644
--- a/mac/org.mozilla.firefox.plist
+++ b/mac/org.mozilla.firefox.plist
@@ -547,6 +547,21 @@
Locked
+ ScreenShare
+
+ Allow
+
+ https://example.org
+
+ Block
+
+ https://example.edu
+
+ BlockNewRequests
+
+ Locked
+
+
PictureInPicture
diff --git a/windows/de-DE/firefox.adml b/windows/de-DE/firefox.adml
index 69bf12c..65f8c20 100644
--- a/windows/de-DE/firefox.adml
+++ b/windows/de-DE/firefox.adml
@@ -87,6 +87,7 @@
Benachrichtigungen
Automatische Wiedergabe
Virtual Reality
+ Bildschirmfreigabe
Authentifizierung
Lesezeichen
Zertifikate
@@ -556,6 +557,20 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, kann
Wenn diese Richtlinieneinstellung aktiviert ist, können die Einstellungen zu Virtual Reality nicht vom Anwender geändert werden.
Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, können Nutzer ihre Einstellungen zu Virtual Reality ändern.
+ Wenn diese Richtlinie aktiviert ist, ist die Bildschirmfreigabe für angegebene Ursprünge immer erlaubt.
+
+Wenn diese Richtlinie deaktiviert oder nicht konfiguriert ist, folgen Anfragen zur Bildschirmfreigabe der Standardrichtlinie.
+ Wenn diese Richtlinie aktiviert ist, wird die Bildschirmfreigabe für angegebene Ursprünge blockiert.
+
+Wenn diese Richtlinie deaktiviert oder nicht konfiguriert ist, folgen Anfragen zur Bildschirmfreigabe der Standardrichtlinie.
+ Neue Anfragen zur Bildschirmfreigabe blockieren
+ Wenn diese Richtlinie aktiviert ist, können Websites, die nicht in der Richtlinie âErlaubenâ aufgeführt sind, keine Bildschirmfreigabe anfordern.
+
+Wenn diese Richtlinie deaktiviert oder nicht konfiguriert ist, können alle Websites, die nicht in der Richtlinie âBlockierenâ aufgeführt sind, Bildschirmfreigabe anfordern.
+ Ãndern der Einstellungen zur Bildschirmfreigabe nicht zulassen
+ Wenn diese Richtlinie aktiviert ist, können die Einstellungen zur Bildschirmfreigabe vom Benutzer nicht geändert werden.
+
+Wenn diese Richtlinie deaktiviert oder nicht konfiguriert ist, kann der Benutzer seine Einstellungen zur Bildschirmfreigabe ändern.
Firefox Home anpassen
Wenn diese Richtlinieneinstellung aktiviert ist, können die Sektionen festgelegt werden, die der Anwender sieht und der Anwender kann diese nicht mehr anpassen.
diff --git a/windows/en-US/firefox.adml b/windows/en-US/firefox.adml
index 8dfaad5..1dd2e01 100644
--- a/windows/en-US/firefox.adml
+++ b/windows/en-US/firefox.adml
@@ -87,6 +87,7 @@
Notifications
Autoplay
Virtual Reality
+ Screen Sharing
Authentication
Bookmarks
Certificates
@@ -554,6 +555,20 @@ If this policy is disabled or not configured, any site that is not in the Block
If this policy is enabled, virtual reality preferences cannot be changed by the user.
If this policy is disabled or not configured, the user can change their virtual reality preferences.
+ If this policy is enabled, screen sharing is always allowed for specified origins.
+
+If this policy is disabled or not configured, screen sharing requests follow the default policy.
+ If this policy is enabled, screen sharing is blocked for specified origins.
+
+If this policy is disabled or not configured, screen sharing requests follow the default policy.
+ Block new screen sharing requests
+ If this policy is enabled, sites that are not in the Allow policy cannot request screen sharing.
+
+If this policy is disabled or not configured, any site that is not in the Block policy can request screen sharing.
+ Do not allow screen sharing preferences to be changed
+ If this policy is enabled, screen sharing preferences cannot be changed by the user.
+
+If this policy is disabled or not configured, the user can change their screen sharing preferences.
Customize Firefox Home
If this policy is enabled, you can choose the sections displayed on Firefox Home and prevent the user from changing them.
diff --git a/windows/firefox.admx b/windows/firefox.admx
index a2b4842..1a00894 100644
--- a/windows/firefox.admx
+++ b/windows/firefox.admx
@@ -138,6 +138,9 @@
+
+
+
@@ -726,6 +729,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/windows/fr-FR/firefox.adml b/windows/fr-FR/firefox.adml
index 084c6c0..587f996 100644
--- a/windows/fr-FR/firefox.adml
+++ b/windows/fr-FR/firefox.adml
@@ -87,6 +87,7 @@
Notifications
Autoplay
Réalité Virtuelle
+ Partage dâécran
Authentification
Favoris
Certificats
@@ -554,6 +555,20 @@ Si cette stratégie est désactivée ou non configurée, tout site qui ne figure
Si cette stratégie est activée, les préférences de réalité virtuelle ne peuvent pas être modifiées par l'utilisateur.
Si cette stratégie est désactivée ou non configurée, l'utilisateur peut modifier ses préférences de réalité virtuelle.
+ Si cette stratégie est activée, le partage dâécran est toujours autorisé pour les origines spécifiées.
+
+Si cette stratégie est désactivée ou non configurée, les demandes de partage dâécran suivent la stratégie par défaut.
+ Si cette stratégie est activée, le partage dâécran est bloqué pour les origines spécifiées.
+
+Si cette stratégie est désactivée ou non configurée, les demandes de partage dâécran suivent la stratégie par défaut.
+ Bloquer les nouvelles demandes de partage dâécran
+ Si cette stratégie est activée, les sites qui ne figurent pas dans la stratégie « Autoriser » ne peuvent pas demander le partage dâécran.
+
+Si cette stratégie est désactivée ou non configurée, tout site qui ne figure pas dans la stratégie « Bloquer » peut demander le partage dâécran.
+ Ne pas autoriser la modification des préférences de partage dâécran
+ Si cette stratégie est activée, les préférences de partage dâécran ne peuvent pas être modifiées par lâutilisateur.
+
+Si cette stratégie est désactivée ou non configurée, lâutilisateur peut modifier ses préférences de partage dâécran.
Personnaliser Firefox Home
Si cette stratégie est activée, vous pouvez choisir les sections affichées sur la page d'accueil de Firefox et empêcher l'utilisateur de les modifier.
diff --git a/windows/ru-RU/firefox.adml b/windows/ru-RU/firefox.adml
index 32dddc7..30c1659 100644
--- a/windows/ru-RU/firefox.adml
+++ b/windows/ru-RU/firefox.adml
@@ -88,6 +88,7 @@
УведомлениÑ
ÐвÑопÑоÑмоÑÑ
ÐиÑÑÑалÑÐ½Ð°Ñ ÑеалÑноÑÑÑ
+ ÐбÑий доÑÑÑп к ÑкÑанÑ
ÐÑÑенÑиÑикаÑиÑ
Ðакладки
СеÑÑиÑикаÑÑ
@@ -557,6 +558,20 @@ Mozilla ÑекомендÑÐµÑ Ð½Ðµ оÑклÑÑаÑÑ ÑелемеÑÑиÑ. Ð
ÐÑли ÑÑа полиÑика вклÑÑена, полÑзоваÑÐµÐ»Ñ Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ Ð¸Ð·Ð¼ÐµÐ½Ð¸ÑÑ Ð½Ð°ÑÑÑойки виÑÑÑалÑной ÑеалÑноÑÑи.
ÐÑли ÑÑа полиÑика оÑклÑÑена или не наÑÑÑоена, полÑзоваÑÐµÐ»Ñ Ð¼Ð¾Ð¶ÐµÑ Ð¸Ð·Ð¼ÐµÐ½Ð¸ÑÑ Ñвои наÑÑÑойки виÑÑÑалÑной ÑеалÑноÑÑи.
+ ÐÑли ÑÑа полиÑика вклÑÑена, обÑий доÑÑÑп к ÑкÑÐ°Ð½Ñ Ð²Ñегда ÑазÑеÑÑн Ð´Ð»Ñ ÑказаннÑÑ
иÑÑоÑников.
+
+ÐÑли ÑÑа полиÑика оÑклÑÑена или не наÑÑÑоена, запÑоÑÑ Ð½Ð° обÑий доÑÑÑп к ÑкÑÐ°Ð½Ñ Ð¿Ð¾Ð´ÑинÑÑÑÑÑ Ð¿Ð¾Ð»Ð¸Ñике по ÑмолÑаниÑ.
+ ÐÑли ÑÑа полиÑика вклÑÑена, обÑий доÑÑÑп к ÑкÑÐ°Ð½Ñ Ð±Ð»Ð¾ÐºÐ¸ÑÑеÑÑÑ Ð´Ð»Ñ ÑказаннÑÑ
иÑÑоÑников.
+
+ÐÑли ÑÑа полиÑика оÑклÑÑена или не наÑÑÑоена, запÑоÑÑ Ð½Ð° обÑий доÑÑÑп к ÑкÑÐ°Ð½Ñ Ð¿Ð¾Ð´ÑинÑÑÑÑÑ Ð¿Ð¾Ð»Ð¸Ñике по ÑмолÑаниÑ.
+ ÐлокиÑоваÑÑ Ð½Ð¾Ð²Ñе запÑоÑÑ Ð½Ð° обÑий доÑÑÑп к ÑкÑанÑ
+ ÐÑли ÑÑа полиÑика вклÑÑена, ÑайÑÑ, коÑоÑÑе не ÑÐºÐ°Ð·Ð°Ð½Ñ Ð² полиÑике «РазÑеÑиÑÑ», не могÑÑ Ð·Ð°Ð¿ÑаÑиваÑÑ Ð¾Ð±Ñий доÑÑÑп к ÑкÑанÑ.
+
+ÐÑли ÑÑа полиÑика оÑклÑÑена или не наÑÑÑоена, лÑбой ÑайÑ, коÑоÑÑй не Ñказан в полиÑике «ÐлокиÑоваÑÑ», Ð¼Ð¾Ð¶ÐµÑ Ð·Ð°Ð¿ÑаÑиваÑÑ Ð¾Ð±Ñий доÑÑÑп к ÑкÑанÑ.
+ ÐапÑеÑиÑÑ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ðµ наÑÑÑоек обÑего доÑÑÑпа к ÑкÑанÑ
+ ÐÑли ÑÑа полиÑика вклÑÑена, полÑзоваÑÐµÐ»Ñ Ð½Ðµ Ð¼Ð¾Ð¶ÐµÑ Ð¸Ð·Ð¼ÐµÐ½ÑÑÑ Ð½Ð°ÑÑÑойки обÑего доÑÑÑпа к ÑкÑанÑ.
+
+ÐÑли ÑÑа полиÑика оÑклÑÑена или не наÑÑÑоена, полÑзоваÑÐµÐ»Ñ Ð¼Ð¾Ð¶ÐµÑ Ð¸Ð·Ð¼ÐµÐ½ÑÑÑ Ñвои наÑÑÑойки обÑего доÑÑÑпа к ÑкÑанÑ.
ÐаÑÑÑоиÑÑ Ð³Ð»Ð°Ð²Ð½ÑÑ ÑÑÑаниÑÑ Firefox
ÐÑли ÑÑа полиÑика вклÑÑена, Ð²Ñ Ð¼Ð¾Ð¶ÐµÑе вÑбÑаÑÑ ÑазделÑ, оÑобÑажаемÑе на домаÑней ÑÑÑаниÑе Firefox, и запÑеÑиÑÑ Ð¿Ð¾Ð»ÑзоваÑÐµÐ»Ñ Ð¸Ð·Ð¼ÐµÐ½ÑÑÑ Ð¸Ñ
.