{ // 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" } ] }