Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
573 changes: 560 additions & 13 deletions Calendar/CalLogHelpers/CalLogCSVFunctions.ps1

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Calendar/CalLogHelpers/CalLogExportFunctions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function Export-CalLog {
}

function Export-CalLogCSV {
$GCDOResults | Export-Csv -Path $Filename -NoTypeInformation -Encoding UTF8
$script:EnhancedCalLogs | Export-Csv -Path $Filename -NoTypeInformation -Encoding UTF8
$script:GCDO | Export-Csv -Path $FilenameRaw -NoTypeInformation -Encoding UTF8
}

Expand Down
4 changes: 2 additions & 2 deletions Calendar/CalLogHelpers/CreateTimelineRow.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function CreateTimelineRow {
}

$Extra = ""
if ($CalLog.CalendarItemType -eq "Exception") {
if (IsExceptionLog $CalLog) {
$Extra = " to the meeting starting $($CalLog.StartTime)"
} elseif ($CalLog.AppointmentRecurring) {
$Extra = " to the meeting series"
Expand All @@ -112,7 +112,7 @@ function CreateTimelineRow {
Forward.Notification {
[array] $Output = "The meeting was FORWARDED by [$($CalLog.Organizer)]."
}
Exception {
Exception* {
if ($CalLog.ResponsibleUser -ne "Calendar Assistant") {
[array] $Output = "[$($CalLog.ResponsibleUser)] $($CalLog.TriggerAction)d Exception starting $($CalLog.StartTime) to the meeting series with $($CalLog.Client)."
}
Expand Down
Loading
Loading