Import-Clixml - Powershell 1.0 CmdLet
ActiveXperts Network Monitor ships with integrated Powershell scripts to monitor complex network. The scripts run out of the box
Download the ActiveXperts Network Monitor FREE version now »
Import-Clixml
Description Import a clixml file and rebuild the PS object Usage Options Example(s) Save a serialized copy of process information to an XML file, then use Import-Clixml to retrieve the contents of the file and recreate as an object stored in the $processes variable. PS C:>get-process | export-clixml proc.xml $processes = import-clixml proc.xml