Use this cmdlet to generate a report about folders that have been synchronized by Super-ExMerge.
PowerShell
Get-FolderTrackingDetail
- -SyncTrackingID
- [-FolderID]
- [-ShowTokenizedPaths]
Description
The Get-FolderTrackingDetail cmdlet returns information about a folder or folders that have been synchronized. See the Output section below for more detail about the properties returned for each folder.
Examples
Example 1
PowerShell
Get-FolderTrackingDetail -SyncTrackingID '[Mailbox]user@source.com <-> [Mailbox]user@target.com'
This example will return detail about each folder that has been synchronized between the source and target stores of the related SyncTask.
Example 2
PowerShell
Get-FolderTrackingDetail -SyncTrackingID '[Mailbox]user@source.com <-> [Mailbox]user@target.com' -ShowTokenizedPaths
This example will show all the folders synchronized between the source and target store of the SyncInfoID and will report the folders paths with common folder tokens.
For information about a common folder token, refer to this Glossary Item: TokenizedPath.
Example 3
PowerShell
Get-FolderTrackingDetail -SyncTrackingID '[Mailbox]user@source.com <-> [Mailbox]user@target.com' -FolderID 1A00BF4600344173FE82A73C98900000113423324436
This example retrieves detail for a specific folder based on the FolderID of either the source or target folder.
Parameters
-SyncTrackingID
This parameter is the identifier of a sync relationship between a source and target store. Multiple sync tasks may reference the same SyncInfo, and as such detail returned by this cmdlet shows all folders related to the source and target store, regardless of the sync task or tasks that are or have been in use.
-FolderID
This parameter is the unique FolderID of either a source or target folder that is part of the SyncInfo referenced by the SyncInfoID. This parameter allows for the retrieval of information for a specific folder.
If this parameter is not used, the cmdlet will return information about all folders in the related SyncInfo.
-ShowTokenizedPaths
This parameter determines whether folder path information returned uses language-agnostic folder name values for common and special folders. See TokenizedPath in the glossary for further explanation.
Output
This cmdlet places one or more PSObject objects, each one representing one folder, on the pipeline, each having the following properties:
| Path | the full path of the folder |
| LastAction | the last action code indicating the last sync operation performed on the folder. |
| LastState | the last synchronization state for the folder. |
| RowID | the numeric RowID of the folder in the underlying data table in which it is stored. |
| SourceFolderID | the hex-string version of the binary folder ID that uniquely represents a folder. |
| TargetFolderID | the hex-string version of the binary folder ID that uniquely represents a folder. |
| SyncInfoID | the SyncInfoID for which the folder is associated. |
