Import-BinaryMiLog

Import-BinaryMiLog

Imports a binary MI log file and creates the corresponding objects in Windows PowerShell.

Syntax

Parameter Set: Default
Import-BinaryMiLog [-Path] <String> [ <CommonParameters>]

Detaillierte Beschreibung

The Import-BinaryMILog cmdlet imports a binary MI log file that was created by using the Export-BinaryMILog command that contains data representing objects and then creates the objects in Windows PowerShell.

Parameter

-Path<String>

Specified the log file to import.

The Path parameter supports wild cards, and relative paths. The cmdlet generates an error if the path resolves to more than one file.

Aliasse

Keiner

Erforderlich?

true

Position?

1

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

<CommonParameters>

Dieses Cmdlet unterstützt die allgemeinen Parameter: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable. Weitere Informationen finden Sie unter about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Eingaben

Der Eingabetyp ist der Typ der Objekte, die über die Pipeline an das Cmdlet übergeben werden können.

Ausgaben

Der Ausgabetyp ist der Typ der Objekte, die vom Cmdlet ausgegeben werden.

Beispiele

-------------------------- EXAMPLE 1 --------------------------

Description

-----------

This example recreates the CimInstances from the data file created in the example for Export-BinaryMILog and saves it to a PowerShell variable.

PS C:\> $processes = Import-BinaryMiLog -Path Processes.bmil

Verwandte Themen

Export-BinaryMILog