Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>VSC-InfoNew to Visual Studio Code? Get it now.
VSC-Info

VSC-Info

saxc

|
24 installs
| (0) | Free
The extensions show the current VS Code version in the status bar and can collect information about VS Code, extensions and the system.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VSC-Info

The extensions show the current editor version in the status bar and can collect information about editor, extensions and the system.

StatusBar

The information in the status bar was the main feature for me to build this extension. I work on different systems with different editor versions, not all of these systems have auto-update functionality. The status bar shows directly which version is running.

StatusBar

Collect information

The extension can collect information about

  • Editor
  • Extensions
  • System

in a JSON file.

{
  "editor": {
    "name": "Visual Studio Code",
    "version": "1.95.2",
    "language": "en"
  },
  "extensions": [
    {
      ...
    }
  ],
  "system": {
    "platform": "linux",
    "arch": "x64",
    "cpus": [
      {
        ...
      }
    ],
    "totalmem": ...,
    "freemem": ..,
    "hostname": ...,
    "uptime": ...,
    "networkInterfaces": {
      "lo": [
        {
          ...
        }
      ],
      "wlan0": [
        {
          ...
        }
      ]
    },
    "userInfo": {
        ...
    }
  }
}

Versioning

YY.MM.VERSION

  • YY: Release year
  • MM: Release month
  • VERSION: Version in year/month
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft