You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Changes to SqlServerEndpoint
- Add the optional parameter Owner. The default owner remains the login used
for the creation of the endpoint (issue #1251).
Details of the scenario you tried and the problem that is occurring
I am configuring the endpoint and realise that its owner is the default one.
It seems to be advised that the owner would be 'sa'
I think that the resource should allow us to define that.
Suggested solution to the issue
The object Microsoft.SqlServer.Management.Smo.Endpoint has the property 'Owner' so I assume than adding a block like this one would do the job :
if ($PSBoundParameters.ContainsKey('Owner'))
{
$endpointObject.Owner = $Owner
}
Version and build of PowerShell the target node is running
12.1.0.0
The text was updated successfully, but these errors were encountered: