Showing posts with label skype for business. Show all posts
Showing posts with label skype for business. Show all posts

Thursday, August 25, 2016

Powershell: Get a list of members of Persistent Chat Room

To get information of specific Persistent Chat room, use following command
Get-CsPersistentChatRoom -Identity <Room Name>

Obviously, to get list of members of chat room, we will use following command
Get-CsPersistentChatRoom -Identity <Room Name> | select-object members

However, you will not get full list of members using above command.

To get full list of members of Persistent Chat, Use following PowerShell command

foreach ($member in (Get-CsPersistentChatRoom -Identity <Room Name> | Select-Object members).members) {$member}


----------------------------------------------------------END---------------------------------------------------------------

Wednesday, June 29, 2016

Playing Video in Skype for Business conference

To play a video in Skype meeting, you should use functionality of PowerPoint embedded video.
Add video in PowerPoint, then while in skype meeting, click on screen sharing button
Click on Present PowerPoint files and then select the PowerPoint file in which you have embedded video.
Presentation will be uploaded on Office web app server and will streamed to all
participants
Now participants will now be able to see your Video clearly with audio.

Friday, April 22, 2016

Screen goes blank/white in Lync sharing session



When a user complains about screen sharing from another user that does not appear on his Lync client (blank or grey screen), please find the following registry keys:

1. 64 bit OS
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}  
2. 32 Bit OS

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}


-       Create or change following registry value under this registry key,
Name = “Compatibility Flags”
Value = “8388608


you can also use below PowerShell script to do changes:
1. 32 bits OS 

Set-ItemProperty -Path “HKLM:\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}” -Name “Compatibility Flags” -Value 8388608
2. 64 Bit OS
Set-ItemProperty -Path “HKLM:\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer\ActiveX Compatibility\{00000000-0000-0000-0000-000000000000}” -Name “Compatibility Flags” -Value 8388608




Please comment if you have any correction or need any clarification.