Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View easyveazie's full-sized avatar

Mike Veazie easyveazie

View GitHub Profile
@easyveazie
easyveazie / Join Skype Meeting Command Line
Last active April 9, 2021 10:05
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("^(+~)")