How can i modify the MSFT_xsqlserversetup service accounts to follow the below naming convention?
$SQLServer = $env:computername
$DomainName = $env:USERDOMAIN
$DBServiceName = “$DomainName$SQLServer” + “DE”
$AgtServiceName = “$DomainName$SQLServer” + “AG”
$FTServiceName = “$DomainName$SQLServer” + “FT”
$RSServiceName = “$DomainName$SQLServer” + “RS”
$ASServiceName = “$DomainName$SQLServer” + “AS”
$ISServiceName = “$DomainName$SQLServer” + “IS”
Thanks in anticipation.