Use this cmdlet to import a previously exported tracking table onto the current host.
PowerShell
Import-TrackingTable
- -FileName
- [-OverwriteExisting]
Description
The Import-TrackingTable imports a previously exported tracking table to the current host. Refer to the vocabulary document on Tracking Tables for more detail.
Examples
Example 1
PowerShell
Import-TrackingTable -FileName c:\exports\ExportedTrackingTableFileName.export -OverwriteExisting
This example will import the tracking table referenced and will overwrite any existing tracking table.
Parameters
-FileName
The FileName parameter specifies the exported tracking table file to be imported. This parameter accepts either a string or a System.IO.FileInfo object referencing the file.
-OverwriteExisting
The OverwriteExisting switch parameter will allow for the replacement of an existing tracking table. This should not be a normal occurrence. Please refer to the Tracking Tables documentation for detail.
Output
This cmdlet will place a PSObject object on the pipeline with metadata about the imported tracking table. See Get-TrackingInfo for details about the properties returned.
