Skip to content

Commit

Permalink
feat: ConvertFrom-Clixml (Fixes #721)
Browse files Browse the repository at this point in the history
  • 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.
52 changes: 52 additions & 0 deletions docs/ConvertFrom-CliXml.md
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>]
```

0 comments on commit 1142209

Please sign in to comment.