Hello Team,
Have you ever tried to use multiple messages for custom powershell scripts
i.e add anoter column for message

My script works but wanted to add 2nd message line or third if possible so I can also alert on the message
Script working
("Statistic." + $_.Property1 + ": " + $_.Result1)
("Message." + $_.Property1 + ": " + $_.Result2)
Is it possible to do something like the below?
("Statistic." + $_.Property1 + ": " + $_.Result1)
("Message." + $_.Property1 + ": " + $_.Result2)
("Message." + $_.Property1 + ": " + $_.Result3)
("Message." + $_.Property1 + ": " + $_.Result4)
I have tried the above but always get

I really appreciate your help