Skip to content

Commit 424ba20

Browse files
authored
Merge pull request MicrosoftDocs#11404 from MicrosoftDocs/chrisda
Update Get-CalendarDiagnosticObjects.md
2 parents 22c116c + 7233313 commit 424ba20

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

exchange/exchange-ps/exchange/Get-CalendarDiagnosticObjects.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ This example retrieves the calendar diagnostic logs from Pedro Pizarro's mailbox
7070
```powershell
7171
$A = Get-CalendarDiagnosticObjects -Identity "Pedro Pizarro" -Subject "Team Meeting" -ExactMatch $true
7272
73-
$A | Select-Object *,@{n='OLMT'
74-
e={[DateTime]::Parse($_.OriginalLastModifiedTime.ToString())}} | sort OLMT | Format-Table OriginalLastModifiedTime,CalendarLogTriggerAction,ItemClass,ClientInfoString
73+
$A | Select-Object *,@{n='OLMT'; e={[DateTime]::Parse($_.OriginalLastModifiedTime.ToString())}} | sort OLMT | Format-Table OriginalLastModifiedTime,CalendarLogTriggerAction,ItemClass,ClientInfoString
7574
```
7675

7776
This is the same as the previous example, but now the results are sorted by original last modified time.

0 commit comments

Comments
 (0)