Created
September 3, 2020 16:04
-
-
Save bunchc/5d5e2d28d3660effab2e58b516af8c2a to your computer and use it in GitHub Desktop.
Join a zoom call from within VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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