During one of my adventures into the world of PowerShell I came across the following error:

Cannot process argument transformation on parameter ‘Environment’. Cannot convert value “System.Xml.XmlElement” to type “System.Xml.XmlDocument”. Error: “The specified node cannot be inserted as the valid child of this node, because the specified node is the wrong type.”

First I’ll explain what I’m trying to do.

I’ve got a PowerShell function that takes xml as a parameter

function Get-XmlData

{

param(
[xml]$XmlDataCannot process argument transformation on parameter 'VARName'. PowerShell powershell
)

begin

{

$name = XmlData.Name

}

process

{

}

end

{

}

 

}

 

Then I’m calling the above function

[xml]$somexml = …

Get-XmlData -XmlData $somexml

This is where the above error appears.

Solution

I came across a solution here:

http://stackoverflow.com/questions/18040841/passing-an-xmlelement-to-a-background-job-in-powershell

After a bit of trying out I found an easier solution:

In my function I changed my Parameter to the type of string

   param(
[string]$XmlData
)

and then within my function I convert the string into Xml.

[xml]$XmlDataXml = $XmlData

 

 

Avatar for Pieter Veenstra

By Pieter Veenstra

Business Applications Microsoft MVP working as the Head of Power Platform at Vantage 365. You can contact me using contact@sharepains.com

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from SharePains by Microsoft MVP Pieter Veenstra

Subscribe now to keep reading and get access to the full archive.

Continue reading