Hi All,
Realy simple, I am sure, but it's so simple I can't find the answer.
I have two variable and need to add a space in the middle. How?
Everything I've read would suggest the following should work:
The actual code looks like:
I've even tried:
If anyone could point me in the right direction, I'd be very grateful.
I know I am going to kick myself when it works. Grrr!!
Thanks
Realy simple, I am sure, but it's so simple I can't find the answer.
I have two variable and need to add a space in the middle. How?
Everything I've read would suggest the following should work:
Code:
$x + " " + $y
The actual code looks like:
Code:
param($fn, $ln)
New-Mailbox -Name $fn + " " + $ln `....
I've even tried:
Code:
$fn + [char]32 + $ln
If anyone could point me in the right direction, I'd be very grateful.
I know I am going to kick myself when it works. Grrr!!
Thanks