1. Home
  2. Docs
  3. Super-ExMerge On-line Doc...
  4. PowerShell Cmdlet Referen...
  5. Get-FolderTrackingDetail

Get-FolderTrackingDetail

Use this cmdlet to generate a report about folders that have been synchronized by Super-ExMerge.

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
  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
  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
  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.

Required:
Yes
Type:
String
Aliases:
None
Position:
0
Default Value:
None

-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.

Required:
No
Type:
String
Aliases:
None
Position:
1
Default Value:
None

-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.

Required:
No
Type:
SwitchParameter
Aliases:
None
Position:
Not a positioned parameter. Use by name only.
Default Value:
False

Output

This cmdlet places one or more PSObject objects, each one representing one folder, on the pipeline, each having the following properties:

Paththe full path of the folder
LastActionthe last action code indicating the last sync operation performed on the folder.
LastStatethe last synchronization state for the folder.
RowIDthe numeric RowID of the folder in the underlying data table in which it is stored.
SourceFolderIDthe hex-string version of the binary folder ID that uniquely represents a folder.
TargetFolderIDthe hex-string version of the binary folder ID that uniquely represents a folder.
SyncInfoIDthe SyncInfoID for which the folder is associated.

How can we help?