-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ConvertFrom-Clixml (Fixes #721)
- Loading branch information
StartAutomating
authored and
StartAutomating
committed
Nov 23, 2023
1 parent
59c1d62
commit 1142209
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
ConvertFrom-CliXml | ||
------------------ | ||
|
||
### Synopsis | ||
Converts CliXml into PowerShell objects | ||
|
||
--- | ||
|
||
### Description | ||
|
||
Converts CliXml strings or compressed CliXml strings into PowerShell objects | ||
|
||
--- | ||
|
||
### Related Links | ||
* [ConvertTo-Clixml](ConvertTo-Clixml.md) | ||
|
||
* [Import-Clixml](https://learn.microsoft.com/powershell/module/Microsoft.PowerShell.Utility/Import-Clixml) | ||
|
||
* [Export-Clixml](https://learn.microsoft.com/powershell/module/Microsoft.PowerShell.Utility/Export-Clixml) | ||
|
||
--- | ||
|
||
### Examples | ||
> EXAMPLE 1 | ||
```PowerShell | ||
dir | ConvertTo-Clixml | ConvertFrom-Clixml | ||
``` | ||
|
||
--- | ||
|
||
### Parameters | ||
#### **InputObject** | ||
The input object. | ||
This is expected to be a CliXML string or XML object | ||
|
||
|Type |Required|Position|PipelineInput | | ||
|------------|--------|--------|--------------| | ||
|`[PSObject]`|true |2 |true (ByValue)| | ||
|
||
--- | ||
|
||
### Outputs | ||
* [String](https://learn.microsoft.com/en-us/dotnet/api/System.String) | ||
|
||
--- | ||
|
||
### Syntax | ||
```PowerShell | ||
ConvertFrom-CliXml [-InputObject] <PSObject> [<CommonParameters>] | ||
``` |