Hello,
I'm trying to deploy the Bitwarden extension across different browsers using WAPT. I haven't been able to find a solution despite numerous attempts. Does anyone have any ideas?
Sincerely,
WAPT 2.5
[SOLVED] Firefox, Google and Edge extension package
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
-
Emmanuel64
- Messages: 46
- Registration: February 23, 2024 - 09:37
Hello,
I'm bumping this post because I'm also interested.
Thank you in advance for your help.
I'm bumping this post because I'm also interested.
Thank you in advance for your help.
WAPT Enterprise
Version 2.6.1.17576
Version 2.6.1.17576
-
fschelfaut
- Messages: 30
- Registration: Nov 7, 2024 - 12:22
Good morning,
Based on the Bitwarden documentationDeployment on all Chromium-based browsers must absolutely be done via a GPO, as there is no other alternative.
With WAPT, here's how I would proceed:
Unfortunately, offline installation is not possible; it must be done through the store
For Firefox, we already have similar packages. For example, for deploy uBlock OriginUnlike Chrome, it is possible to install extensions offline.
Yours sincerely,
Flavien
Based on the Bitwarden documentationDeployment on all Chromium-based browsers must absolutely be done via a GPO, as there is no other alternative.
With WAPT, here's how I would proceed:
Code: Select all
registry_set(HKEY_LOCAL_MACHINE, "Software\Policies\BraveSoftware\Brave\ExtensionInstallForcelist", "10", "nngceckbapebfimnlniiiahkandclblb;https://clients2.google.com/service/update2/crx", REG_SZ)
registry_set(HKEY_LOCAL_MACHINE, "Software\Policies\Google\Chrome\ExtensionInstallForcelist", "10", "nngceckbapebfimnlniiiahkandclblb;https://clients2.google.com/service/update2/crx", REG_SZ)
registry_set(HKEY_LOCAL_MACHINE, "Software\Policies\Microsoft\Edge\ExtensionInstallForcelist", "10", "jbkfoedolllekgbhcbcoahefnbanhhlh;https://edge.microsoft.com/extensionwebstorebase/v1/crx", REG_SZ)
For Firefox, we already have similar packages. For example, for deploy uBlock OriginUnlike Chrome, it is possible to install extensions offline.
Yours sincerely,
Flavien
-
Emmanuel64
- Messages: 46
- Registration: February 23, 2024 - 09:37
Thank you so much, it's perfect!
This allows me to more easily fine-tune the installation of extensions with the bitwarden-config-template package.
Also, my GPO worked perfectly on Firefox but wouldn't do anything on Chromium.
This allows me to more easily fine-tune the installation of extensions with the bitwarden-config-template package.
Also, my GPO worked perfectly on Firefox but wouldn't do anything on Chromium.
WAPT Enterprise
Version 2.6.1.17576
Version 2.6.1.17576
-
Emmanuel64
- Messages: 46
- Registration: February 23, 2024 - 09:37
Follow-up question!
As a best practice, how would you remove these registry keys when the bitwarden-config-template package is no longer distributed or when uninstalling the bitwarden package?
Thank you.
As a best practice, how would you remove these registry keys when the bitwarden-config-template package is no longer distributed or when uninstalling the bitwarden package?
Thank you.
WAPT Enterprise
Version 2.6.1.17576
Version 2.6.1.17576
-
fschelfaut
- Messages: 30
- Registration: Nov 7, 2024 - 12:22
Good morning,
Here's how I would do it. Below is an example for Chrome:
Since this is a GPO setting, deleting the key in the registry will uninstall the browser extension.
Flavien,
Here's how I would do it. Below is an example for Chrome:
Code: Select all
def install():
registry_set(
HKEY_LOCAL_MACHINE,
"Software\Policies\Google\Chrome\ExtensionInstallForcelist", "10",
"nngceckbapebfimnlniiiahkandclblb;https://clients2.google.com/service/update2/crx",
REG_SZ
)
def uninstall():
registry_delete(
HKEY_LOCAL_MACHINE,
"Software\Policies\Google\Chrome\ExtensionInstallForcelist",
"10"
)
Flavien,
-
Emmanuel64
- Messages: 46
- Registration: February 23, 2024 - 09:37
Hello,
thank you very much for your reply.
Did you put it in the bitwarden-config-template package (which is customized) or in the bitwarden package?
thank you very much for your reply.
Did you put it in the bitwarden-config-template package (which is customized) or in the bitwarden package?
WAPT Enterprise
Version 2.6.1.17576
Version 2.6.1.17576
-
fschelfaut
- Messages: 30
- Registration: Nov 7, 2024 - 12:22
Hello,
I've created a new package, but you can certainly integrate it into the bitwarden-config-template package if you wish.
However, I recommend keeping the two separate for easier management.
Flavien
I've created a new package, but you can certainly integrate it into the bitwarden-config-template package if you wish.
However, I recommend keeping the two separate for easier management.
Flavien
-
Emmanuel64
- Messages: 46
- Registration: February 23, 2024 - 09:37
Thank you for this advice 
WAPT Enterprise
Version 2.6.1.17576
Version 2.6.1.17576
