写一段power shell脚本来创建一个xml文档并保存下来
时间: 2023-06-03 22:04:40 浏览: 162
好的,以下是一个可以创建并保存XML文档的PowerShell脚本:
$xmlDoc = New-Object System.Xml.XmlDocument
# 创建XML文档对象
$xmlDeclaration = $xmlDoc.CreateXmlDeclaration("1.0","UTF-8",$null)
# 创建XML声明,指定文档版本和编码方式
$xmlDoc.AppendChild($xmlDeclaration)
# 将XML声明添加到XML文档中
$xmlRoot = $xmlDoc.CreateElement("Root")
# 创建XML根元素
$xmlDoc.AppendChild($xmlRoot)
# 将XML根元素添加到XML文档中
$xmlChild = $xmlDoc.CreateElement("Child")
# 创建一个子元素
$xmlChild.SetAttribute("name", "Test")
# 为子元素设置一个属性
$xmlRoot.AppendChild($xmlChild)
# 将子元素添加到根元素中
$xmlDoc.Save("test.xml")
# 将XML文档保存为test.xml文件
请注意,如果要在脚本执行时指定不同的文件名和路径,可以修改最后一行保存语句中的参数。
阅读全文