Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
6,670
Downloads of v 1.0.721:
98
Last Update:
20 Aug 2019
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
vscode-vsliveshare extension vscode- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Live Share VSCode Extension
This is not the latest version of Live Share VSCode Extension available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
6,670
Downloads of v 1.0.721:
98
Maintainer(s):
Software Author(s):
- Microsoft
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Live Share VSCode Extension 1.0.721
This is not the latest version of Live Share VSCode Extension available.
All Checks are Passing
2 Passing Test
To install Live Share VSCode Extension, run the following command from the command line or from PowerShell:
To upgrade Live Share VSCode Extension, run the following command from the command line or from PowerShell:
To uninstall Live Share VSCode Extension, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download vscode-vsliveshare --internalize --version=1.0.721 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade vscode-vsliveshare -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade vscode-vsliveshare -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure vscode-vsliveshare installed
win_chocolatey:
name: vscode-vsliveshare
state: present
version: 1.0.721
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'vscode-vsliveshare' do
action :install
version '1.0.721'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: vscode-vsliveshare,
Version: 1.0.721,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller vscode-vsliveshare
{
Name = 'vscode-vsliveshare'
Ensure = 'Present'
Version = '1.0.721'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'vscode-vsliveshare':
provider => 'chocolatey',
ensure => '1.0.721',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install vscode-vsliveshare version="1.0.721" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 20 Aug 2019.
Microsoft Visual Studio Live Share
Visual Studio Live Share enables you to collaboratively edit and debug with others in real time, regardless what programming languages you're using or app types you're building. It allows you to instantly (and securely) share your current project, and then as needed, share debugging sessions, terminal instances, localhost web apps, voice calls, and more! Developers that join your sessions recieve all of their editor context from your environment (e.g. language services, debugging), which ensures they can start productively collaborating immediately, without needing to clone any repos or install any SDKs.
Additionally, unlike traditional pair programming, Visual Studio Live Share allows developers to work together, while retaining their personal editor preferences (e.g. theme, keybindings), as well as having their own cursor. This allows you to seamlessly transition between following one another, and being able to explore ideas/tasks on your own. In practice, this ability to work together and independently provides a collaboration experience that is potentiallty more natural for many common use cases.
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop'
Install-VsCodeExtension -extensionId '[email protected]'
$ErrorActionPreference = 'Stop'
Uninstall-VsCodeExtension -extensionId 'ms-vsliveshare.vsliveshare'
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Live Share VSCode Extension 1.0.3912 | 15 | Thursday, March 4, 2021 | Approved |
Live Share VSCode Extension 1.0.3784 | 102 | Wednesday, February 17, 2021 | Approved |
Live Share VSCode Extension 1.0.3629 | 97 | Thursday, February 4, 2021 | Approved |
Live Share VSCode Extension 1.0.3577 | 81 | Wednesday, January 27, 2021 | Approved |
Live Share VSCode Extension 1.0.3484 | 77 | Wednesday, January 13, 2021 | Approved |
Live Share VSCode Extension 1.0.3449 | 74 | Friday, January 8, 2021 | Approved |
Live Share VSCode Extension 1.0.3375 | 70 | Friday, December 18, 2020 | Approved |
Live Share VSCode Extension 1.0.3303 | 63 | Tuesday, December 8, 2020 | Approved |
Live Share VSCode Extension 1.0.3206 | 104 | Tuesday, November 17, 2020 | Approved |
Live Share VSCode Extension 1.0.3121 | 79 | Wednesday, November 4, 2020 | Approved |
Live Share VSCode Extension 1.0.3071 | 55 | Tuesday, October 27, 2020 | Approved |
Live Share VSCode Extension 1.0.3046 | 63 | Wednesday, October 21, 2020 | Approved |
Live Share VSCode Extension 1.0.3014 | 47 | Thursday, October 15, 2020 | Approved |
Live Share VSCode Extension 1.0.2902 | 106 | Monday, September 28, 2020 | Approved |
Live Share VSCode Extension 1.0.2740 | 111 | Tuesday, September 1, 2020 | Approved |
Live Share VSCode Extension 1.0.2731 | 53 | Friday, August 28, 2020 | Approved |
Live Share VSCode Extension 1.0.2708 | 45 | Thursday, August 27, 2020 | Approved |
Live Share VSCode Extension 1.0.2666 | 75 | Tuesday, August 18, 2020 | Approved |
Live Share VSCode Extension 1.0.2619 | 78 | Tuesday, August 11, 2020 | Approved |
Live Share VSCode Extension 1.0.2478 | 104 | Monday, July 20, 2020 | Approved |
Live Share VSCode Extension 1.0.2427 | 89 | Wednesday, July 1, 2020 | Approved |
Live Share VSCode Extension 1.0.2377 | 67 | Tuesday, June 23, 2020 | Approved |
Live Share VSCode Extension 1.0.2354 | 57 | Wednesday, June 17, 2020 | Approved |
Live Share VSCode Extension 1.0.2302 | 67 | Wednesday, June 10, 2020 | Approved |
Live Share VSCode Extension 1.0.2274 | 51 | Wednesday, June 3, 2020 | Approved |
Live Share VSCode Extension 1.0.2236 | 61 | Friday, May 22, 2020 | Approved |
Live Share VSCode Extension 1.0.2169 | 55 | Thursday, May 14, 2020 | Approved |
Live Share VSCode Extension 1.0.2106 | 71 | Thursday, May 7, 2020 | Approved |
Live Share VSCode Extension 1.0.2104 | 71 | Tuesday, April 28, 2020 | Approved |
Live Share VSCode Extension 1.0.2048 | 62 | Thursday, April 23, 2020 | Approved |
Live Share VSCode Extension 1.0.2000 | 71 | Thursday, April 16, 2020 | Approved |
Live Share VSCode Extension 1.0.1947 | 72 | Wednesday, April 8, 2020 | Approved |
Live Share VSCode Extension 1.0.1891 | 70 | Tuesday, March 31, 2020 | Approved |
Live Share VSCode Extension 1.0.1847 | 77 | Wednesday, March 25, 2020 | Approved |
Live Share VSCode Extension 1.0.1783 | 82 | Tuesday, March 17, 2020 | Approved |
Live Share VSCode Extension 1.0.1742 | 69 | Tuesday, March 10, 2020 | Approved |
Live Share VSCode Extension 1.0.1711 | 56 | Wednesday, March 4, 2020 | Approved |
Live Share VSCode Extension 1.0.1653 | 82 | Friday, February 21, 2020 | Approved |
Live Share VSCode Extension 1.0.1615 | 60 | Friday, February 14, 2020 | Approved |
Live Share VSCode Extension 1.0.1510 | 93 | Wednesday, January 22, 2020 | Approved |
Live Share VSCode Extension 1.0.1482 | 62 | Tuesday, January 14, 2020 | Approved |
Live Share VSCode Extension 1.0.1456 | 63 | Wednesday, January 8, 2020 | Approved |
Live Share VSCode Extension 1.0.1404 | 86 | Wednesday, December 18, 2019 | Approved |
Live Share VSCode Extension 1.0.1377 | 65 | Thursday, December 12, 2019 | Approved |
Live Share VSCode Extension 1.0.1375 | 52 | Wednesday, December 11, 2019 | Approved |
Live Share VSCode Extension 1.0.1293 | 76 | Tuesday, November 19, 2019 | Approved |
Live Share VSCode Extension 1.0.1245 | 56 | Thursday, November 14, 2019 | Approved |
Live Share VSCode Extension 1.0.1123 | 79 | Saturday, November 2, 2019 | Approved |
Live Share VSCode Extension 1.0.1122 | 53 | Wednesday, October 30, 2019 | Approved |
Live Share VSCode Extension 1.0.1056 | 58 | Monday, October 21, 2019 | Approved |
Live Share VSCode Extension 1.0.988 | 71 | Wednesday, October 16, 2019 | Approved |
Live Share VSCode Extension 1.0.950 | 74 | Tuesday, October 8, 2019 | Approved |
Live Share VSCode Extension 1.0.905 | 76 | Monday, September 30, 2019 | Approved |
Live Share VSCode Extension 1.0.869 | 70 | Tuesday, September 24, 2019 | Approved |
Live Share VSCode Extension 1.0.828 | 54 | Friday, September 20, 2019 | Approved |
Live Share VSCode Extension 1.0.826 | 61 | Tuesday, September 17, 2019 | Approved |
Live Share VSCode Extension 1.0.809 | 65 | Thursday, September 12, 2019 | Approved |
Live Share VSCode Extension 1.0.766 | 81 | Tuesday, September 3, 2019 | Approved |
Live Share VSCode Extension 1.0.752 | 89 | Thursday, August 29, 2019 | Approved |
Live Share VSCode Extension 1.0.721 | 98 | Tuesday, August 20, 2019 | Approved |
Live Share VSCode Extension 1.0.694 | 73 | Wednesday, August 14, 2019 | Approved |
Live Share VSCode Extension 1.0.657 | 69 | Thursday, August 8, 2019 | Approved |
Live Share VSCode Extension 1.0.614 | 90 | Tuesday, July 30, 2019 | Approved |
Live Share VSCode Extension 1.0.581 | 106 | Thursday, July 25, 2019 | Approved |
Live Share VSCode Extension 1.0.540 | 87 | Wednesday, July 17, 2019 | Approved |
Live Share VSCode Extension 1.0.509 | 67 | Wednesday, July 10, 2019 | Approved |
Live Share VSCode Extension 1.0.488 | 65 | Wednesday, July 3, 2019 | Approved |
Live Share VSCode Extension 1.0.471 | 78 | Tuesday, June 25, 2019 | Approved |
Live Share VSCode Extension 1.0.470 | 51 | Tuesday, June 25, 2019 | Approved |
Live Share VSCode Extension 1.0.419 | 82 | Wednesday, June 19, 2019 | Approved |
Live Share VSCode Extension 1.0.379 | 75 | Tuesday, June 11, 2019 | Approved |
Live Share VSCode Extension 1.0.337 | 88 | Wednesday, June 5, 2019 | Approved |
Live Share VSCode Extension 1.0.311 | 80 | Thursday, May 30, 2019 | Approved |
Live Share VSCode Extension 1.0.249 | 75 | Tuesday, May 21, 2019 | Approved |
Live Share VSCode Extension 1.0.182 | 75 | Wednesday, May 15, 2019 | Approved |
Live Share VSCode Extension 1.0.181 | 62 | Friday, May 10, 2019 | Approved |
Live Share VSCode Extension 1.0.125 | 78 | Thursday, May 2, 2019 | Approved |
Live Share VSCode Extension 1.0.91 | 81 | Thursday, April 25, 2019 | Approved |
Live Share VSCode Extension 1.0.67 | 69 | Tuesday, April 23, 2019 | Approved |
Live Share VSCode Extension 1.0.45 | 60 | Tuesday, April 16, 2019 | Approved |
Live Share VSCode Extension 1.0.18 | 67 | Tuesday, April 2, 2019 | Approved |
Live Share VSCode Extension 0.3.1403 | 81 | Wednesday, March 27, 2019 | Approved |
Live Share VSCode Extension 0.3.1326 | 74 | Wednesday, March 13, 2019 | Approved |
Live Share VSCode Extension 0.3.1284 | 52 | Monday, March 11, 2019 | Approved |
Microsoft
-
- chocolatey-vscode.extension (≥ 1.0.0)
- vscode (≥ 1.30.0)
Ground Rules:
- This discussion is only about Live Share VSCode Extension and the Live Share VSCode Extension package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Live Share VSCode Extension, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.