All Tags »
Hey! »
XML »
PowerShell
Sorry, but there are no more tags available to filter with.
-
In TechNet Magazine you can find the Scripting Guy article The Games Are Afoot! Oh, and Some XML, Too
I translated the scripts given for this article into PowerShell
# Create
$xml = New-Object xml
$root = $xml.CreateElement("ITChecklist")
[void]$xml.AppendChild($root)
$Record = ...