Simon Heather
Simon Heather
Dsc resources should only apply changes when a resource is detected to be not in the desired state, so `Always` does not fit this pattern. I only see two options;...
That setting is already there @kungfu71186, use `PasswordNeverResets=$true`
No, this is not related to the pending ADGroup PR I have open. @dslcleve, can you post the output from `Get-ADGroup -Properties *` for a group that returns `8224` in...
Thanks @dslcleve. Can you output the full error object you are receiving in the DscResource? You can do this by adding `Write-Debug ($_ | ConvertTo-Json)` to the resource. I'm hoping...
This hasn't got the JSON output of the error object in it. You need to run `Start-DscConfiguration` with `-Debug`
Hi @johlju, just a few grammar/typo fixes in reviewable. Unfortunately, I don't have a Hyper-V host to test it with (my home lab is ESXi). The way I have been...
I RDP onto the VM, and it is a very manual process. Agreed you should initially focus on Hyper-V and getting to an automated process.
/azp run dsccommunity.ActiveDirectoryDsc
Hi @chasewilson. Thanks for submitting this. We will take a look at it.
I setup this test script on a Windows 2012 R2 server running PowerShell 4.0: ```powershell [CmdletBinding(PositionalBinding=$false)] param( [Parameter(Position=1)] [string] $Parm1, [Parameter()] [string] $Parm2, [Parameter()] [string] $Parm3 ) ``` Here is...