Fiander

Results 7 comments of Fiander

personally i just use the code below to set al of this. The advantage of having it in a resource would be that you can have it dynamic what would...

personally i would like to see all the changes a script makes. so something like : ``` Importing PowerShell module 'SqlServer' with version '21.1.18080' from path 'C:\Program Files\WindowsPowerShell\Modules\SqlServer\21.1.18080\SqlServer.psm1'. (SQ LCOMMON0025)...

maybe when doing all to Write-debug, also change the Write-verbose in Get-TargetResource? From ` Write-Verbose -Message ( $script:localizedData.GetConfiguration -f $InstanceName )` to ` if ( $((Get-Variable MyInvocation -Scope 1).Value.MyCommand.Name) -in...

> The format seems to be `[protocol:]hostname[\instance][,port]`, e.g. `tcp:192.168.1.1\TEST,50200` To my best understanding, they are mutual exclusive. e.g. `tcp:192.168.1.1\TEST` OR `tcp:192.168.1.1,50200` Where the \TEST runs to the browser service to...

Is this dsc configuration used on both RS servers? according to this example there should be a lot more configuration for two RS Servers. [Example4](https://github.com/dsccommunity/SqlServerDsc/blob/main/source/Examples/Resources/SqlRS/4-CompleteWithTwoInstances.ps1)

i also think this is a bug. i think in the resource row 548 `if ($Disabled)` should be `if ($LoginCredential.Disabled)` as it is, if the login on the server is...

this could be done using an parameter alias. that way it would not be a breaking change and can this change be done resource after resource.