Last active
April 9, 2021 10:05
Join Skype Meeting Command Line
This file contains 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
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("^(+~)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hi
iam new github