Skip to content

Instantly share code, notes, and snippets.

@bunchc
Created September 3, 2020 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bunchc/5d5e2d28d3660effab2e58b516af8c2a to your computer and use it in GitHub Desktop.
Save bunchc/5d5e2d28d3660effab2e58b516af8c2a to your computer and use it in GitHub Desktop.
Join a zoom call from within VSCode
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Join meeting",
"type": "shell",
"windows": {
"command": "C:\\Program Files (x86)\\Zoom\\bin\\Zoom.exe",
"options": {
"cwd": "C:\\Program Files (x86)\\Zoom\\bin\\"
},
"args": [
{
"value": "--url=zoommtg://zoom.us/join?action=join&confno=${input:meetingID}",
"quoting": "strong"
}
]
},
"group": "build",
"presentation": {
"reveal": "never"
}
},
{
"label": "Kill Zoom",
"type": "shell",
"windows": {
"command": "Get-Service -Name *Zoom* | Stop-Service -Force -Confirm:$false; Get-Process -Name *Zoom* | Stop-Process -Force -Confirm:$false",
},
"group": "build",
"presentation": {
"reveal": "never"
}
}
],
"inputs": [
{
"id": "meetingID",
"type": "promptString",
"description": "Meeting ID Number"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment