PowerShell XML以错误的格式更新值

时间:2018-08-06 12:28:43

标签: xml powershell

我想通过PowerShell更新XML文件。我是这样的:

$dbxml = [xml](Get-Content $dbxmlfile)
$dbxml.testconf.test.value = 1
$dbxml.Save($dbxmlfile)

但是在“测试”之后的XML文件中没有格式。

编辑前的状态:

<testconf>
   <test>
      <value>1000</value>
   </test>
</testconf>

以及之后的情况:

<testconf>
  <test><value>1</value></test></testconf>

0 个答案:

没有答案