Skip to content

Commit

Permalink
Merge pull request #2086 from microsoft/main
Browse files Browse the repository at this point in the history
Release 5-3-24
  • Loading branch information
dpaulson45 authored May 3, 2024
2 parents db724bd + 3b0c1e4 commit 9f1e342
Show file tree
Hide file tree
Showing 6 changed files with 388 additions and 351 deletions.
1 change: 1 addition & 0 deletions Calendar/CalLogHelpers/CalLogCSVFunctions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ function BuildCSV {
'IsIgnorable' = $IsIgnorable
'SubjectProperty' = $CalLog.SubjectProperty
'Client' = $ShortClientName
'ShortClientInfoString' = $CalLog.ShortClientInfoString
'ClientInfoString' = $CalLog.ClientInfoString
'TriggerAction' = $CalLog.CalendarLogTriggerAction
'ItemClass' = $CalLog.ItemClass
Expand Down
1 change: 1 addition & 0 deletions Calendar/CalLogHelpers/Invoke-GetCalLogs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ $script:CustomPropertyNameList =
"IsAllDayEvent",
"IsCancelled",
"IsMeeting",
"IsOrganizerProperty",
"NormalizedSubject",
"SendMeetingMessagesDiagnostics",
"SentRepresentingDisplayName",
Expand Down
10 changes: 5 additions & 5 deletions Calendar/CalLogHelpers/ShortClientNameFunctions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function FindMatch {

$ShortClientNameProcessor = @{
'Client=Hub Transport' = "Transport"
'Client=MSExchangeRPC' = "Outlook : Desktop"
'Client=MSExchangeRPC' = "Outlook : Desktop : MAPI"
'OneOutlook' = "OneOutlook"
'Lync for Mac' = "LyncMac"
'AppId=00000004-0000-0ff1-ce00-000000000000' = "SkypeMMS"
Expand Down Expand Up @@ -124,16 +124,16 @@ function CreateShortClientName {
if ($ClientInfoString -like "*InternalCalendarSharing*" -and
$ClientInfoString -like "*OWA*" -and
$ClientInfoString -notlike "*OneOutlook*") {
$ShortClientName = "Owa-ModernCalendarSharing"
$ShortClientName = "OWA : REST"
}
if ($ClientInfoString -like "*InternalCalendarSharing*" -and $ClientInfoString -like "*MacOutlook*") {
$ShortClientName = "MacOutlook-ModernCalendarSharing"
$ShortClientName = "MacOutlook : REST"
}
if ($ClientInfoString -like "*InternalCalendarSharing*" -and $ClientInfoString -like "*Outlook*") {
$ShortClientName = "Outlook-ModernCalendarSharing"
$ShortClientName = "Outlook : Desktop : REST"
}
if ($ClientInfoString -like "Client=ActiveSync*" -and $ClientInfoString -like "*Outlook*") {
$ShortClientName = "Outlook-ModernCalendarSharing"
$ShortClientName = "Outlook : ActiveSync"
}
if ($ClientInfoString -like "*OneOutlook*") {
$ShortClientName = "OneOutlook"
Expand Down
Loading

0 comments on commit 9f1e342

Please sign in to comment.