In our work environment we have centrally managed VS Code allowed extensions via GPO.
Recently we have received a request to allow installation of an extension that is not published onto the marketplace (since the extension is only intended for internal use); all we have is the .vsix
file for offline installation.
We have tried to allow the private extension via the GPO AllowedExtensions
with these combinations:
{ "publisher_id": true }
{ "publisher_id"."extension_id": true }
{ "extension_id": true }
(Thepublisher_id
andextension_id
values are extracted from thepackage.json
file within the.vsix
package.)
When checking the extension settings page we can see the new settings being applied. However, trying to install the extension with "Install from VSIX..." resulted in the message:
Error: This extension cannot be installed because it is not in the [allowed list]
We would expect the installation would be successful. Is it something that can be done?