Change first letter after white space to capital

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() });