-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
292 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ | |
# .PARAMETER CaseNumber | ||
# Case Number to include in the Filename of the output. | ||
# | ||
# .PARAMETER ShortLogs | ||
# Limit Logs to 500 instead of the default 2000, in case the server has trouble responding with the full logs. | ||
# | ||
# .EXAMPLE | ||
# Get-CalendarDiagnosticObjectsSummary.ps1 -Identity [email protected] -MeetingID 040000008200E00074C5B7101A82E008000000008063B5677577D9010000000000000000100000002FCDF04279AF6940A5BFB94F9B9F73CD | ||
# | ||
|
@@ -45,6 +48,7 @@ param ( | |
[string[]]$Identity, | ||
[switch]$ExportToExcel, | ||
[string]$CaseNumber, | ||
[switch]$ShortLogs, | ||
|
||
[Parameter(Mandatory, ParameterSetName = 'MeetingID', Position = 1)] | ||
[string]$MeetingID, | ||
|
@@ -79,11 +83,15 @@ Write-Verbose "Script Versions: $BuildVersion" | |
. $PSScriptRoot\CalLogHelpers\ShortClientNameFunctions.ps1 | ||
. $PSScriptRoot\CalLogHelpers\CalLogInfoFunctions.ps1 | ||
. $PSScriptRoot\CalLogHelpers\CalLogExportFunctions.ps1 | ||
. $PSScriptRoot\CalLogHelpers\ExcelModuleInstaller.ps1 | ||
. $PSScriptRoot\CalLogHelpers\CreateTimelineRow.ps1 | ||
. $PSScriptRoot\CalLogHelpers\FindChangedPropFunctions.ps1 | ||
. $PSScriptRoot\CalLogHelpers\Write-DashLineBoxColor.ps1 | ||
|
||
if ($ExportToExcel.IsPresent) { | ||
. $PSScriptRoot\CalLogHelpers\ExcelModuleInstaller.ps1 | ||
. $PSScriptRoot\CalLogHelpers\ExportToExcelFunctions.ps1 | ||
} | ||
|
||
# =================================================================================================== | ||
# Main | ||
# =================================================================================================== | ||
|