Я хотел бы отредактировать с помощью powershell узел и обновить его случайным числом
узел xml-файлов
<?xml version="1.0" encoding="utf-8" ?>
<Configuration>
<Other appsCode="V7{}appsCont-12-Win-GM">
<Data key="appsnumbers">970767075516458272844213</Data>
</Other>
</Configuration>
script
# load XML file into local variable and cast as XML type.
$doc = [xml](Get-Content ./test.xml)
$doc.root.one
# find the value *970787075519458272844213* in the node and create a new one and update the xml files
$doc.save("./testNew.xml")
ty для любой помощи:)