Johan Ljunggren
Johan Ljunggren
I think it would be fairly easy to add those properties as parameters to the resource. They are just handled as text values right? So the would be added like...
For reference how to implement it can be found in this resource https://github.com/dsccommunity/DnsServerDsc/blob/main/source/DSCResources/DSC_DnsServerRootHint/DSC_DnsServerRootHint.psm1. See both the schema and the code.
I gathered the lines that could potentially be affected using the script [Get-ScriptLinesWithMinimumLength.ps1](https://gist.github.com/johlju/7579549c9d43fe9595e267242a9aabfc). Also the 120 character limit used is calculated including any starting whitespace. 120 characters is not a...
I’m good with the first one: ```powershell Write-Verbose -Message ( $script:localizedData.NotDesiredPropertyState -f 'ManagedBy', $ManagedBy, $targetResource.ManagedBy ) $targetResourceInCompliance = $false ``` Or if there are one with more variables to format...
Sometime there are arguments that are longer so using a array makes it possible to do this ```PowerShell Write-Verbose -Message ( $script:localizedData.NotDesiredPropertyState -f @( ('ManagedBy{0}{1}' -f property1, property2) $ManagedBy $targetResource.ManagedBy...
Can we run a domain controller in docker? I thought we couldn’t do that yet. If we can then I agree docker is the way to go.
If it works, then we could actually run tests in AppVeyor since we can run docker containers there, and the test framework also supports running tests in a container. https://github.com/PowerShell/DscResource.Tests#run-tests-in-a-docker-windows-container...
Great that you found this, and awesome diagnosis of the problem! Should we revert the change that was introduced in PR #620, or do you see a way forward?
Thanks for the detailed issue report! Sounds like the best it to make sure the argument `MachineOU` is properly quoted and escaped. This article explains, as you said, that any...
The DSC resource ADUser does not yet support the ExtensionAttribute1-15 that is added to the AD Schema when running Exchange Server. Not sure if these properties should be added to...