question

Marcus-9726 avatar image
0 Votes"
Marcus-9726 asked JimmyYang-MSFT commented

How to Generate Users/Admin Audit Log in Skype For Business Server 2015

Hi there,

I'm looking for how to generate a report/audit log that will contain the below activities:

  1. Which users are enabled for skype pool

  2. Which users are deleted from skype pool

  3. Any changes made to Skype users

From Microsoft article I don't see any built-in report that contains above information. Hopefully someone here can guide me on how to retrieve these information or is it achievable?

https://docs.microsoft.com/en-us/skypeforbusiness/manage/health-and-monitoring/user-registration-report

Thank you.



office-skype-business-server-administrationoffice-skype-business-server-itpro-general
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

JimmyYang-MSFT avatar image
0 Votes"
JimmyYang-MSFT answered JimmyYang-MSFT commented

Hi @MarcusWong-9726

You can try to run the following command in Skype for Business PowerShell to check how many users are enabled in Skype for Business Server

 Get-Csuser | where{($_.RegistrarPool.FriendlyName -eq "xxx") -and ($_.Enabled -eq $True)} | Select-Object
 DisplayName, SipAddress, EnterpriseVoiceEnabled,LineUri | Export-Csv -Path c:\tempuser\20200927SIP.csv -NoTypeInformation

For the deleted users, you just need to change the "$_.Enabled" attribute to false.


If the response is helpful, please click "Accept Answer" and upvote it.

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

· 4
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hi Jimmy,

This command seems like showing us how many users are enabled for Skype. I would like to know is there any commands or report that we can utilize to see if there's any users enabled for Skype or deleted recently.

Appreciate your advice on this.

Thank you.

0 Votes 0 ·

Hi @MarcusWong-9726

As a supplement, the above command can also show you the enabled user's detailed information in Skype for Business Server.

The following test result are for your reference:

Search the enabled users information:

93832-14.png

Search the enabled users information:

93841-15.png

In Skype for Business control panel, you can see if it has been enabled:

93719-16.png


0 Votes 0 ·
14.png (20.3 KiB)
15.png (17.2 KiB)
16.png (89.5 KiB)

@MarcusWong-9726

It has been a while, how is everything going?
If you have any update about this issue, please feel free to post back.

0 Votes 0 ·
Show more comments