b3.
b3.

Reputation: 7165

Command line parameters to open Skype for Business chat room

We use a persistent Skype for Business chat room and use it to broadcast daily the work done on particular projects. I'd like to launch Skype for Business each weekday morning and have it opened to this chat room. I thought to use Windows Task Scheduler and Skype for Business's command-line options to do this. The command for a specific contact is clear, e.g.:

"C:\Program Files\Microsoft Office\root\Office16\lync.exe" sip:jsmith

...but how is this done for a chat room instead of a contact?

Upvotes: 3

Views: 5967

Answers (3)

tukan
tukan

Reputation: 17337

You probably won't like the answer but you can't do that simply via Lync's command line.

What you are looking for is called Persistent Chat Room. For that you need to use the Persistent Chat SDK.

What you could do is use a C# program e..g How to: Send a message to a chat room to send messages to the persistent room.

You could have a silverlight plugin for the persistent room.

Upvotes: 3

Jin Thakur
Jin Thakur

Reputation: 2773

conf:sip:https://meet.contoso.com/kazuto/7322994

Opens a Conversation window and displays meeting audio join options.

Upvotes: 1

Cas Dekkers
Cas Dekkers

Reputation: 372

According to the Microsoft Docs, you could try something like:

"C:\Program Files\Microsoft Office\root\Office16\lync.exe" im:<sip:user1@host><sip:user2@host>

Source: Starting Lync from another application

Upvotes: 5

Related Questions