Skip to content

Instantly share code, notes, and snippets.

View J0rtIT's full-sized avatar
🌋
https://www.faboit.com https://Twitch.tv/j0rt

Jose Gabriel Ortega Castro J0rtIT

🌋
https://www.faboit.com https://Twitch.tv/j0rt
View GitHub Profile
@J0rtIT
J0rtIT / xmlToString.ps1
Created April 16, 2020 05:27 — forked from vors/xmlToString.ps1
PowerShell function to convert any [xml] element to string
function Convert-XmlElementToString
{
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
$xml
)
$sw = [System.IO.StringWriter]::new()
$xmlSettings = [System.Xml.XmlWriterSettings]::new()