Skip to content

Instantly share code, notes, and snippets.

@MarkWarneke
Created May 14, 2019 06:57
Show Gist options
  • Select an option

  • Save MarkWarneke/db3dac981e0fc2c87d7d51d3baf8b456 to your computer and use it in GitHub Desktop.

Select an option

Save MarkWarneke/db3dac981e0fc2c87d7d51d3baf8b456 to your computer and use it in GitHub Desktop.
Synchronize extensions across Visual Studio Code with PowerShell
$code = code --list-extensions
$codeinsiders = code-insiders --list-extensions
Compare-Object -ReferenceObject $code -DifferenceObject $codeinsiders -PassThru | %{ code-insiders --install-extension $_ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment