diff --git a/DscResources/MSFT_GroupResource/MSFT_GroupResource.psm1 b/DscResources/MSFT_GroupResource/MSFT_GroupResource.psm1 index a2ec986..3590cfe 100644 --- a/DscResources/MSFT_GroupResource/MSFT_GroupResource.psm1 +++ b/DscResources/MSFT_GroupResource/MSFT_GroupResource.psm1 @@ -2156,7 +2156,7 @@ function Test-IsLocalMachine $Scope ) - $localMachineScopes = @( '.', $env:computerName, 'localhost', '127.0.0.1', 'NT Authority', 'NT Service' ) + $localMachineScopes = @( '.', $env:computerName, 'localhost', '127.0.0.1', 'NT Authority', 'NT Service', 'BuiltIn' ) if ($localMachineScopes -icontains $Scope) { diff --git a/README.md b/README.md index 1ad3a59..181c8e5 100644 --- a/README.md +++ b/README.md @@ -506,7 +506,7 @@ The following parameters will be the same for each process in the set: * WindowsProcess: Minor updates to integration tests * Registry: Fixed support for forward slashes in registry key names * Group: - * Group members in the "NT Authority" and "NT Service" scopes should now be resolved without an error. If you were seeing the errors "Exception calling ".ctor" with "4" argument(s): "Server names cannot contain a space character."" or "Exception calling ".ctor" with "2" argument(s): "Server names cannot contain a space character."", this fix should resolve those errors. If you are still seeing one of the errors, there is probably another local scope we need to add. Please let us know. + * Group members in the "NT Authority", "BuiltIn" and "NT Service" scopes should now be resolved without an error. If you were seeing the errors "Exception calling ".ctor" with "4" argument(s): "Server names cannot contain a space character."" or "Exception calling ".ctor" with "2" argument(s): "Server names cannot contain a space character."", this fix should resolve those errors. If you are still seeing one of the errors, there is probably another local scope we need to add. Please let us know. * The resource will no longer attempt to resolve group members if Members, MembersToInclude, and MembersToExclude are not specified. * Added Environment