```
$urlDomain = $url.TrimStart($splitURL[0] + ".")
```
in Add-LocalIntranetURL is writing an incorrect domain by trimming off the first character. Previous line from 3.93 worked.
More info on the issue with TrimStart: http://social.technet.microsoft.com/Forums/en-US/bc18e3a4-aaad-474f-856e-b8649640d728/stringtrimstart-is-returning-the-incorrect-value
$urlDomain = $url.TrimStart($splitURL[0] + ".")
```
in Add-LocalIntranetURL is writing an incorrect domain by trimming off the first character. Previous line from 3.93 worked.
More info on the issue with TrimStart: http://social.technet.microsoft.com/Forums/en-US/bc18e3a4-aaad-474f-856e-b8649640d728/stringtrimstart-is-returning-the-incorrect-value