Search notes:

Concatenate strings in PowerShell

'foo', 'bar', 'baz' -join ''
-join('foo', 'bar', 'baz')
$('foo' + 'bar' + 'baz')  

Index