Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 1.16 KB

README.md

File metadata and controls

40 lines (34 loc) · 1.16 KB

SfBUserSession

Based on Get-CsUserSession cmdlet to pull back QoE data from SfB O365

Example Syntax

get-userstreams.ps1 -Type Report -startTime 04/01/2018 -endTime 04/15/2018 -ReportPath -c:\temp\reports

Optional Parameter -CsvUsers c:\temp\specific-users.csv

CSV Format

SipAddress
sip:[email protected]
sip:[email protected]
sip:[email protected]

Output

This will output seven separate reports to the report path you provided when you executed the script

  • Application Sharing
  • Audio
  • Reliability
  • Rate My Call
  • VBSS
  • Video
  • IMFED

Admin Override URL

If you need to utilize the admin override url, you can modify this from pssessions.psm1 on line 69.

    try {
        # Create new PSSession
        $session = New-CsOnlineSession -Credential $mycredentials
        #$session = New-CsOnlineSession -Credential $mycredentials -OverrideAdminDomain "domain.onmicrosoft.com"
}

General Notes

This is a in development script.
Since the script is based on Get-CsUserSession it can take a while to run based on total number of users.