Ok, new to dbatools, am trying to use Install-DbaInstance using configuration in my powershell script.
eg (snippet):
$installParams = @{
SQLInstance = $sqlServer
Version = $SQLVersion
Feature = $features
DataPath = "D:MSSQLDBs"
LogPath = "E:MSSQLLogs"
TempPath = "F:MSSQLTemp"
BackupPath = "\xxxxxxmssqlbackups$"
Path = $path
Credential = $cred
}
Install-DbaInstance @installParams
When I specify EnginerCredential – it won’t accept my gmsa – it just sees it as an ordinary credential and requests a password.
So my question is how to I specify an gmsa account for my engine services?
Ian
New contributor
Ian is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.