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

Marcus Wong Theen Nam 1,146 Reputation points
2021-04-30T10:01:55.79+00:00

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://learn.microsoft.com/en-us/skypeforbusiness/manage/health-and-monitoring/user-registration-report

Thank you.

Microsoft 365 and Office | Skype for Business | Windows
0 comments No comments
{count} votes

Accepted answer
  1. JimmyYang-MSFT 58,641 Reputation points Microsoft External Staff
    2021-05-03T05:21:31.007+00:00

    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.


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.