To change the first letter after a space to UpperCase use the following code:
$Name = [Regex]::Replace($Name, '\b(\w)', { param($m) $m.Value.ToUpper() });
To change the first letter after a space to UpperCase use the following code:
$Name = [Regex]::Replace($Name, '\b(\w)', { param($m) $m.Value.ToUpper() });