|
|
Browse by Tags
All Tags » Hey! » XML
-
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 = ...
|
|
|