Skip to content

Instantly share code, notes, and snippets.

@easyveazie
Last active April 9, 2021 10:05
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save easyveazie/5be0b21d2f9052049f85aa68b31ac1b1 to your computer and use it in GitHub Desktop.
Save easyveazie/5be0b21d2f9052049f85aa68b31ac1b1 to your computer and use it in GitHub Desktop.
Join Skype Meeting Command Line
We have a "virtual room" at the office that we use to expand our office with our remote teammates.
It's essentially laptop hooked up to a fancy camera that hosts a Skype meeting.
In order to simulate a user logging into Skype and joining the meeting, we run a PowerShell script that opens the conference room,
and simulate CTRL + SHIFT + ENTER to join with video.
$x = New-Object -COM WScript.Shell
$x.Run('"C:\Program Files (x86)\Microsoft Office\root\Office16\lync.exe" conf:sip:https://join.mydomain.com/meet/myusername/Y5356B19')
sleep -seconds 10
$x.SendKeys("^(+~)")
@musa420
Copy link

musa420 commented Apr 9, 2021

hi
iam new github

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment