Andreas Jordan
Andreas Jordan
That one is easy to explain. Have a look at the source code. The command just uses another command and filters the output. Your special parameters are not forwarded to...
I was able to reproduce the problem. And I was wrong. There is no need to pass the common parameters to the next level: ``` function Test-CommonParametersInner { [CmdletBinding()] param...
Claude had some good ideas, but this is probably not the best solution. I want to be sure that the change actually fixes the bug. Let me try to create...
This got a bit stale. So let me bring this issue to you attention again...
I did a first test against a server with a default instance and a named instance and this is the result. I added some comments starting with "##>" ``` PS...
I configured one instance to use a gMSA that can automatically register the SPN and has done that successfully. Here is the output: ``` PS C:\Windows\system32> Test-DbaKerberos -SqlInstance server-007\sqlinstance3 -Detailed...
I don't have much time today, will look into this tomorrow.
Had a quick scan of the code - Claude hallucinated: * $server.TcpPort * $server.Configuration.IsTcpEnabled.ConfigValue We will have to manually check every test.
Check 2: Check for duplicate SPNs Goal is to check existing SPNs, but the test uses the needed SPNs returned from Test-DbaSpn. There is no possability for a duplicate SPN....
Check 3: Validate SPN format Goal is to check existing SPNs, but the test uses the needed SPNs returned from Test-DbaSpn. There is no possability for a wrong SPN. But...