Hello, have a question about updating an XML doc.
I have an unattend.xml file I’ve brought into powershell by:
[xml]$Unattend = Get-Content \\share\unattend.xml
I can view a value I want to change by:
$Unattend.unattend.settings.component.interfaces.interface.dnsdomain
When I run that command it returns system.string ‘test.local’
I want to update the domain to ‘test2.local’
I have tried $Unattend.unattend.settings.component.interfaces.interface.dnsdomain = ‘test2.local’ but I get:
“Property ‘dnsdomain’ cannot be found on this object; make sure it exists and is settable.
Any ideas how I can change that value?