Why am I getting this error when I attempt to download any extensions for visual studios 2022?

Forrest Crawford 60 Reputation points
2024-06-22T04:27:56.6266667+00:00

I cant download any extensions and they all end with this log but I'm not sure what it means:

6/22/2024 12:25:34 AM - Microsoft VSIX Installer
6/22/2024 12:25:34 AM - -------------------------------------------
6/22/2024 12:25:34 AM - vsixinstaller.exe version:
6/22/2024 12:25:34 AM - 17.10.2186+0bf64ad641
6/22/2024 12:25:34 AM - -------------------------------------------
6/22/2024 12:25:34 AM - Command line parameters:
6/22/2024 12:25:34 AM - C:\Program Files (x86)\Microsoft Visual Studio\Installer\resources\app\ServiceHub\Services\Microsoft.VisualStudio.Setup.Service\VSIXInstaller.exe,C:\Users\fcraw\Downloads\GitHub.Copilot.Vsix.1.199.0.1.vsix
6/22/2024 12:25:34 AM - -------------------------------------------
6/22/2024 12:25:34 AM - Microsoft VSIX Installer
6/22/2024 12:25:34 AM - -------------------------------------------
6/22/2024 12:25:34 AM - Initializing Install...
6/22/2024 12:25:34 AM - Searching for applicable products...
6/22/2024 12:25:35 AM - Found installed product - Visual Studio Community 2022
6/22/2024 12:25:35 AM - Found installed product - Global Location
6/22/2024 12:25:35 AM - Extension Details...
6/22/2024 12:25:35 AM - 	Identifier         : GitHub.Copilot
6/22/2024 12:25:35 AM - 	Name               : GitHub Copilot Completions
6/22/2024 12:25:35 AM - 	Author             : GitHub
6/22/2024 12:25:35 AM - 	Version            : 1.199.0.1
6/22/2024 12:25:35 AM - 	Description        : GitHub Copilot Completions is an AI pair programmer that helps you write code faster and with less work. For Visual Studio 17.10 or higher, GitHub Copilot (Chat and Completions) is built-in, it need not be installed as an extension.
6/22/2024 12:25:35 AM - 	Locale             : en-US
6/22/2024 12:25:35 AM - 	MoreInfoURL        : 
6/22/2024 12:25:35 AM - 	InstalledByMSI     : False
6/22/2024 12:25:35 AM - 	SupportedFrameworkVersionRange : [0.0,2147483647.2147483647]
6/22/2024 12:25:35 AM - 	SignatureState     : Unsigned
6/22/2024 12:25:35 AM - 	Supported Products : 
6/22/2024 12:25:35 AM - 		Microsoft.VisualStudio.Community
6/22/2024 12:25:35 AM - 			Version : [17.5.33627,17.10)
6/22/2024 12:25:35 AM - 			ProductArchitecture : amd64
6/22/2024 12:25:35 AM - 		Microsoft.VisualStudio.Community
6/22/2024 12:25:35 AM - 			Version : [17.5.33627,17.10)
6/22/2024 12:25:35 AM - 			ProductArchitecture : arm64
6/22/2024 12:25:35 AM - 	References         : 
6/22/2024 12:25:35 AM - 	Prerequisites      : 
6/22/2024 12:25:35 AM - 		-------------------------------------------------------
6/22/2024 12:25:35 AM - 		Identifier   : Microsoft.VisualStudio.Component.IntelliCode
6/22/2024 12:25:35 AM - 		Name         : IntelliCode
6/22/2024 12:25:35 AM - 		Version      : [17.4.33213,18.0)
6/22/2024 12:25:35 AM - Signature Details...
6/22/2024 12:25:35 AM - 	Extension is not signed.
6/22/2024 12:25:35 AM - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products.
   at VSIXInstaller.ExtensionService.GetInstallableDataImpl(String vsixPath, String extensionPackParentName, Boolean isRepairSupported, IStateData stateData, IEnumerable`1& skuData)
   at VSIXInstaller.ExtensionService.GetInstallableData(String vsixPath, String extensionPackParentName, Boolean isRepairSupported, IStateData stateData, IEnumerable`1& skuData)
   at VSIXInstaller.ExtensionPackService.IsExtensionPack(IStateData stateData, Boolean isRepairSupported)
   at VSIXInstaller.ExtensionPackService.ExpandExtensionPackToInstall(IStateData stateData, Boolean isRepairSupported)
   at VSIXInstaller.App.Initialize(Boolean isRepairSupported)
   at VSIXInstaller.App.Initialize()
   at System.Threading.Tasks.Task`1.InnerInvoke()
   at System.Threading.Tasks.Task.Execute()

Visual Studio
Visual Studio
A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.
4,814 questions
Visual Studio Extensions
Visual Studio Extensions
Visual Studio: A family of Microsoft suites of integrated development tools for building applications for Windows, the web and mobile devices.Extensions: A program or program module that adds functionality to or extends the effectiveness of a program.
189 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. gekka 7,911 Reputation points MVP
    2024-06-22T23:52:51.29+00:00

    Supported Products :
    Microsoft.VisualStudio.Community
    Version : [17.5.33627,17.10)

    This means , this extension supports VisualStudio version 17.5.33627 <= version < 17.10.
    Therefore, if you update Visual Studio 2022 to 17.10 or later, it will refuse to install the extension.

    It is possible to force installation by downloaded VSIX from the marketplace, open it as a ZIP file, and modify the extension.vsixmanifest in it.

    0 comments No comments

  2. RLWA32 42,366 Reputation points
    2024-06-23T06:56:56.3+00:00

    If you are using VS2022 17.10 or above it already includes GitHub Copilot and there is no reason to install an extension. This is stated in the extension's Description which says "GitHub Copilot Completions is an AI pair programmer that helps you write code faster and with less work. For Visual Studio 17.10 or higher, GitHub Copilot (Chat and Completions) is built-in, it need not be installed as an extension."

    0 comments No comments