PS Get/Set-ADGroup issues accepting variable/object input The Next CEO of Stack OverflowSet-ADGroup cannot find group just created in same script (PowerShell)Powershell Get-ADGroup : Cannot bind parameter 'Identity'Bulk Users in ADThe Get-VM is not recognized as a command after taking a sessionCmdlet fails when using pipelineGet-ADgroupmember FSP accounts issueWhat am i missing Set-DynamicDistributionGroupGet-ADGroup with -recursive is not working?Assignment operator prevents concatenationHow do I fix this script?

Multi tool use
How exploitable/balanced is this homebrew spell: Spell Permanency?
Is it possible to create a QR code using text?
How seriously should I take size and weight limits of hand luggage?
That's an odd coin - I wonder why
Can a PhD from a non-TU9 German university become a professor in a TU9 university?
Finitely generated matrix groups whose eigenvalues are all algebraic
Why can't we say "I have been having a dog"?
Avoiding the "not like other girls" trope?
Compensation for working overtime on Saturdays
Find a path from s to t using as few red nodes as possible
Find the majority element, which appears more than half the time
Loop in macOS not working
What does the same-ish mean?
Why does the freezing point matter when picking cooler ice packs?
Is this a new Fibonacci Identity?
Is a distribution that is normal, but highly skewed, considered Gaussian?
Is it possible to get a referendum by a court decision?
Mathematica command that allows it to read my intentions
Is it possible to make a 9x9 table fit within the default margins?
My boss doesn't want me to have a side project
Is it okay to majorly distort historical facts while writing a fiction story?
How can a day be of 24 hours?
Was the Stack Exchange "Happy April Fools" page fitting with the 90s code?
Does the Idaho Potato Commission associate potato skins with healthy eating?
PS Get/Set-ADGroup issues accepting variable/object input
The Next CEO of Stack OverflowSet-ADGroup cannot find group just created in same script (PowerShell)Powershell Get-ADGroup : Cannot bind parameter 'Identity'Bulk Users in ADThe Get-VM is not recognized as a command after taking a sessionCmdlet fails when using pipelineGet-ADgroupmember FSP accounts issueWhat am i missing Set-DynamicDistributionGroupGet-ADGroup with -recursive is not working?Assignment operator prevents concatenationHow do I fix this script?
I'm creating Distribution Lists, and trying to populate the AD Description field. Set-ADGroup appears to be the correct cmdlet for this task, however I'm having trouble using it inside a simple script, or using a variable to pass along the required parameters or objects.
This works:
Get-ADGroup -Identity "CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld"
But this doesn't:
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object DistinguishedName
Get-ADGroup -Identity $GroupDn
And fails with this error:
get-adgroup : Cannot find an object with identity: '$GroupDn' under:
'DC=subdomain,DC=domain,DC=tld'. At line:1 char:1
+ get-adgroup -Identity '$GroupDn'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: ($GroupDn:ADGroup) [Get-ADGroup], ADIdentityNotFoundException
+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException,Microsoft.ActiveDirectory.Management.Commands.GetADGroup
$GroupDn is storing this object:
PS D:Scripts> $groupdn
DistinguishedName
-----------------
CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld
I assumed this is because Get-ADGroup is expecting string input, but I also know this is Powershell and objects and all that is the magic, the secret sauce, but my roux appears to be lumpy and I'm missing some key point.
So, is string input what I should be handling here? If so, what's the right way to get that DN into a string?
Or what part of the object secret sauce am I missing?
powershell active-directory exchange-server distribution-list
|
show 8 more comments
I'm creating Distribution Lists, and trying to populate the AD Description field. Set-ADGroup appears to be the correct cmdlet for this task, however I'm having trouble using it inside a simple script, or using a variable to pass along the required parameters or objects.
This works:
Get-ADGroup -Identity "CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld"
But this doesn't:
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object DistinguishedName
Get-ADGroup -Identity $GroupDn
And fails with this error:
get-adgroup : Cannot find an object with identity: '$GroupDn' under:
'DC=subdomain,DC=domain,DC=tld'. At line:1 char:1
+ get-adgroup -Identity '$GroupDn'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: ($GroupDn:ADGroup) [Get-ADGroup], ADIdentityNotFoundException
+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException,Microsoft.ActiveDirectory.Management.Commands.GetADGroup
$GroupDn is storing this object:
PS D:Scripts> $groupdn
DistinguishedName
-----------------
CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld
I assumed this is because Get-ADGroup is expecting string input, but I also know this is Powershell and objects and all that is the magic, the secret sauce, but my roux appears to be lumpy and I'm missing some key point.
So, is string input what I should be handling here? If so, what's the right way to get that DN into a string?
Or what part of the object secret sauce am I missing?
powershell active-directory exchange-server distribution-list
1
Try piping the object to your get command:$groupDn | Get-ADGroup
– TheIncorrigible1
Mar 8 at 19:51
1
Or feed the DN directly into theidentity
parameter:get-adgroup -identity $groupdn.distinguishedname
– AdminOfThings
Mar 8 at 19:52
The reason you are having trouble is because when you pipe toSelect-Object
, you are outputting aPSObject
instead of anADGroup
object. The -identity parameter either needs a direct value that it recognizes as anADGroup
property value or anADGroup
object itself.
– AdminOfThings
Mar 8 at 19:58
Running$groupdn.distinguishedname
returns nothing and when I use that in the-Identity
parameter it tells me "Cannot validate argument on parameter 'Identity'. the Argument is null."
– music2myear
Mar 8 at 20:11
1
Try with$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
, so$GroupDN
will contain just the DistinghuishedName of the group as string, not an object with a property calledDistinghuishedName
. Or do what @TheIncorrigible1 commented and pipe the object through to theGet-ADGroup
cmdlet and leave out the-Identity
parameter.
– Theo
Mar 9 at 14:37
|
show 8 more comments
I'm creating Distribution Lists, and trying to populate the AD Description field. Set-ADGroup appears to be the correct cmdlet for this task, however I'm having trouble using it inside a simple script, or using a variable to pass along the required parameters or objects.
This works:
Get-ADGroup -Identity "CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld"
But this doesn't:
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object DistinguishedName
Get-ADGroup -Identity $GroupDn
And fails with this error:
get-adgroup : Cannot find an object with identity: '$GroupDn' under:
'DC=subdomain,DC=domain,DC=tld'. At line:1 char:1
+ get-adgroup -Identity '$GroupDn'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: ($GroupDn:ADGroup) [Get-ADGroup], ADIdentityNotFoundException
+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException,Microsoft.ActiveDirectory.Management.Commands.GetADGroup
$GroupDn is storing this object:
PS D:Scripts> $groupdn
DistinguishedName
-----------------
CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld
I assumed this is because Get-ADGroup is expecting string input, but I also know this is Powershell and objects and all that is the magic, the secret sauce, but my roux appears to be lumpy and I'm missing some key point.
So, is string input what I should be handling here? If so, what's the right way to get that DN into a string?
Or what part of the object secret sauce am I missing?
powershell active-directory exchange-server distribution-list
I'm creating Distribution Lists, and trying to populate the AD Description field. Set-ADGroup appears to be the correct cmdlet for this task, however I'm having trouble using it inside a simple script, or using a variable to pass along the required parameters or objects.
This works:
Get-ADGroup -Identity "CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld"
But this doesn't:
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object DistinguishedName
Get-ADGroup -Identity $GroupDn
And fails with this error:
get-adgroup : Cannot find an object with identity: '$GroupDn' under:
'DC=subdomain,DC=domain,DC=tld'. At line:1 char:1
+ get-adgroup -Identity '$GroupDn'
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: ($GroupDn:ADGroup) [Get-ADGroup], ADIdentityNotFoundException
+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:Microsoft.ActiveDirectory.Management.ADIdentityNotFoundException,Microsoft.ActiveDirectory.Management.Commands.GetADGroup
$GroupDn is storing this object:
PS D:Scripts> $groupdn
DistinguishedName
-----------------
CN=My Group Name,OU=Distribution,OU=Groups,DC=subdomain,DC=domain,DC=tld
I assumed this is because Get-ADGroup is expecting string input, but I also know this is Powershell and objects and all that is the magic, the secret sauce, but my roux appears to be lumpy and I'm missing some key point.
So, is string input what I should be handling here? If so, what's the right way to get that DN into a string?
Or what part of the object secret sauce am I missing?
powershell active-directory exchange-server distribution-list
powershell active-directory exchange-server distribution-list
asked Mar 8 at 19:38


music2myearmusic2myear
276518
276518
1
Try piping the object to your get command:$groupDn | Get-ADGroup
– TheIncorrigible1
Mar 8 at 19:51
1
Or feed the DN directly into theidentity
parameter:get-adgroup -identity $groupdn.distinguishedname
– AdminOfThings
Mar 8 at 19:52
The reason you are having trouble is because when you pipe toSelect-Object
, you are outputting aPSObject
instead of anADGroup
object. The -identity parameter either needs a direct value that it recognizes as anADGroup
property value or anADGroup
object itself.
– AdminOfThings
Mar 8 at 19:58
Running$groupdn.distinguishedname
returns nothing and when I use that in the-Identity
parameter it tells me "Cannot validate argument on parameter 'Identity'. the Argument is null."
– music2myear
Mar 8 at 20:11
1
Try with$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
, so$GroupDN
will contain just the DistinghuishedName of the group as string, not an object with a property calledDistinghuishedName
. Or do what @TheIncorrigible1 commented and pipe the object through to theGet-ADGroup
cmdlet and leave out the-Identity
parameter.
– Theo
Mar 9 at 14:37
|
show 8 more comments
1
Try piping the object to your get command:$groupDn | Get-ADGroup
– TheIncorrigible1
Mar 8 at 19:51
1
Or feed the DN directly into theidentity
parameter:get-adgroup -identity $groupdn.distinguishedname
– AdminOfThings
Mar 8 at 19:52
The reason you are having trouble is because when you pipe toSelect-Object
, you are outputting aPSObject
instead of anADGroup
object. The -identity parameter either needs a direct value that it recognizes as anADGroup
property value or anADGroup
object itself.
– AdminOfThings
Mar 8 at 19:58
Running$groupdn.distinguishedname
returns nothing and when I use that in the-Identity
parameter it tells me "Cannot validate argument on parameter 'Identity'. the Argument is null."
– music2myear
Mar 8 at 20:11
1
Try with$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
, so$GroupDN
will contain just the DistinghuishedName of the group as string, not an object with a property calledDistinghuishedName
. Or do what @TheIncorrigible1 commented and pipe the object through to theGet-ADGroup
cmdlet and leave out the-Identity
parameter.
– Theo
Mar 9 at 14:37
1
1
Try piping the object to your get command:
$groupDn | Get-ADGroup
– TheIncorrigible1
Mar 8 at 19:51
Try piping the object to your get command:
$groupDn | Get-ADGroup
– TheIncorrigible1
Mar 8 at 19:51
1
1
Or feed the DN directly into the
identity
parameter: get-adgroup -identity $groupdn.distinguishedname
– AdminOfThings
Mar 8 at 19:52
Or feed the DN directly into the
identity
parameter: get-adgroup -identity $groupdn.distinguishedname
– AdminOfThings
Mar 8 at 19:52
The reason you are having trouble is because when you pipe to
Select-Object
, you are outputting a PSObject
instead of an ADGroup
object. The -identity parameter either needs a direct value that it recognizes as an ADGroup
property value or an ADGroup
object itself.– AdminOfThings
Mar 8 at 19:58
The reason you are having trouble is because when you pipe to
Select-Object
, you are outputting a PSObject
instead of an ADGroup
object. The -identity parameter either needs a direct value that it recognizes as an ADGroup
property value or an ADGroup
object itself.– AdminOfThings
Mar 8 at 19:58
Running
$groupdn.distinguishedname
returns nothing and when I use that in the -Identity
parameter it tells me "Cannot validate argument on parameter 'Identity'. the Argument is null."– music2myear
Mar 8 at 20:11
Running
$groupdn.distinguishedname
returns nothing and when I use that in the -Identity
parameter it tells me "Cannot validate argument on parameter 'Identity'. the Argument is null."– music2myear
Mar 8 at 20:11
1
1
Try with
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
, so $GroupDN
will contain just the DistinghuishedName of the group as string, not an object with a property called DistinghuishedName
. Or do what @TheIncorrigible1 commented and pipe the object through to the Get-ADGroup
cmdlet and leave out the -Identity
parameter.– Theo
Mar 9 at 14:37
Try with
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
, so $GroupDN
will contain just the DistinghuishedName of the group as string, not an object with a property called DistinghuishedName
. Or do what @TheIncorrigible1 commented and pipe the object through to the Get-ADGroup
cmdlet and leave out the -Identity
parameter.– Theo
Mar 9 at 14:37
|
show 8 more comments
2 Answers
2
active
oldest
votes
As requested.
The problem with your code is that it gets the distinghuished name as PSCustomObject with a property called 'DistinghuishedName', where you really want to get this property as String.
If you change that to (using Exchange Get-Group
):
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
or (using ActiveDirectory Get-ADGroup
):
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
The variable $GroupDn
will then contain just the DistinghuishedName of the group as string that can be used as -Identity
parameter for other AD commands.
Get-ADGroup
can also be used in another type of syntax, namely by passing an object through the pipeline. This object needs to have at least one of these properties: DistinguishedName
, GUID
, SID
or SamAccountName
.
$GroupObject = Get-Group -Identity "My Group Name"
$GroupObject | Get-ADGroup
Using this syntax, you do not need to set the Identity
parameter.
add a comment |
I was also able to pipe like this:
Get-Group | % Get-ADGroup -Identity $_.DistinguishedName
It still seems not to play well with different domains though, but this would definitely work for groups in the same domain. The key as to why something like Get-Group | Select DistinguishedName
or Get-Group | Get-ADGroup
doesn't work is to use the Get-Member
cmdlet. So running something like:
Get-Group | Get-Member
Get-Group | Select DistinguishedName | Get-Member
Should return something like this:
TypeName: Deserialized.Microsoft.Exchange.Data.Directory.Management.WindowsGroup
TypeName: Selected.System.Management.Automation.PSCustomObject
And as you can see from there, that is not what would be accepted from a pipeline into the Get-ADGroup
cmdlet.
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
add a comment |
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069917%2fps-get-set-adgroup-issues-accepting-variable-object-input%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
As requested.
The problem with your code is that it gets the distinghuished name as PSCustomObject with a property called 'DistinghuishedName', where you really want to get this property as String.
If you change that to (using Exchange Get-Group
):
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
or (using ActiveDirectory Get-ADGroup
):
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
The variable $GroupDn
will then contain just the DistinghuishedName of the group as string that can be used as -Identity
parameter for other AD commands.
Get-ADGroup
can also be used in another type of syntax, namely by passing an object through the pipeline. This object needs to have at least one of these properties: DistinguishedName
, GUID
, SID
or SamAccountName
.
$GroupObject = Get-Group -Identity "My Group Name"
$GroupObject | Get-ADGroup
Using this syntax, you do not need to set the Identity
parameter.
add a comment |
As requested.
The problem with your code is that it gets the distinghuished name as PSCustomObject with a property called 'DistinghuishedName', where you really want to get this property as String.
If you change that to (using Exchange Get-Group
):
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
or (using ActiveDirectory Get-ADGroup
):
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
The variable $GroupDn
will then contain just the DistinghuishedName of the group as string that can be used as -Identity
parameter for other AD commands.
Get-ADGroup
can also be used in another type of syntax, namely by passing an object through the pipeline. This object needs to have at least one of these properties: DistinguishedName
, GUID
, SID
or SamAccountName
.
$GroupObject = Get-Group -Identity "My Group Name"
$GroupObject | Get-ADGroup
Using this syntax, you do not need to set the Identity
parameter.
add a comment |
As requested.
The problem with your code is that it gets the distinghuished name as PSCustomObject with a property called 'DistinghuishedName', where you really want to get this property as String.
If you change that to (using Exchange Get-Group
):
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
or (using ActiveDirectory Get-ADGroup
):
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
The variable $GroupDn
will then contain just the DistinghuishedName of the group as string that can be used as -Identity
parameter for other AD commands.
Get-ADGroup
can also be used in another type of syntax, namely by passing an object through the pipeline. This object needs to have at least one of these properties: DistinguishedName
, GUID
, SID
or SamAccountName
.
$GroupObject = Get-Group -Identity "My Group Name"
$GroupObject | Get-ADGroup
Using this syntax, you do not need to set the Identity
parameter.
As requested.
The problem with your code is that it gets the distinghuished name as PSCustomObject with a property called 'DistinghuishedName', where you really want to get this property as String.
If you change that to (using Exchange Get-Group
):
$GroupDn = Get-Group -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
or (using ActiveDirectory Get-ADGroup
):
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
The variable $GroupDn
will then contain just the DistinghuishedName of the group as string that can be used as -Identity
parameter for other AD commands.
Get-ADGroup
can also be used in another type of syntax, namely by passing an object through the pipeline. This object needs to have at least one of these properties: DistinguishedName
, GUID
, SID
or SamAccountName
.
$GroupObject = Get-Group -Identity "My Group Name"
$GroupObject | Get-ADGroup
Using this syntax, you do not need to set the Identity
parameter.
answered Mar 12 at 7:56
TheoTheo
6,1223521
6,1223521
add a comment |
add a comment |
I was also able to pipe like this:
Get-Group | % Get-ADGroup -Identity $_.DistinguishedName
It still seems not to play well with different domains though, but this would definitely work for groups in the same domain. The key as to why something like Get-Group | Select DistinguishedName
or Get-Group | Get-ADGroup
doesn't work is to use the Get-Member
cmdlet. So running something like:
Get-Group | Get-Member
Get-Group | Select DistinguishedName | Get-Member
Should return something like this:
TypeName: Deserialized.Microsoft.Exchange.Data.Directory.Management.WindowsGroup
TypeName: Selected.System.Management.Automation.PSCustomObject
And as you can see from there, that is not what would be accepted from a pipeline into the Get-ADGroup
cmdlet.
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
add a comment |
I was also able to pipe like this:
Get-Group | % Get-ADGroup -Identity $_.DistinguishedName
It still seems not to play well with different domains though, but this would definitely work for groups in the same domain. The key as to why something like Get-Group | Select DistinguishedName
or Get-Group | Get-ADGroup
doesn't work is to use the Get-Member
cmdlet. So running something like:
Get-Group | Get-Member
Get-Group | Select DistinguishedName | Get-Member
Should return something like this:
TypeName: Deserialized.Microsoft.Exchange.Data.Directory.Management.WindowsGroup
TypeName: Selected.System.Management.Automation.PSCustomObject
And as you can see from there, that is not what would be accepted from a pipeline into the Get-ADGroup
cmdlet.
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
add a comment |
I was also able to pipe like this:
Get-Group | % Get-ADGroup -Identity $_.DistinguishedName
It still seems not to play well with different domains though, but this would definitely work for groups in the same domain. The key as to why something like Get-Group | Select DistinguishedName
or Get-Group | Get-ADGroup
doesn't work is to use the Get-Member
cmdlet. So running something like:
Get-Group | Get-Member
Get-Group | Select DistinguishedName | Get-Member
Should return something like this:
TypeName: Deserialized.Microsoft.Exchange.Data.Directory.Management.WindowsGroup
TypeName: Selected.System.Management.Automation.PSCustomObject
And as you can see from there, that is not what would be accepted from a pipeline into the Get-ADGroup
cmdlet.
I was also able to pipe like this:
Get-Group | % Get-ADGroup -Identity $_.DistinguishedName
It still seems not to play well with different domains though, but this would definitely work for groups in the same domain. The key as to why something like Get-Group | Select DistinguishedName
or Get-Group | Get-ADGroup
doesn't work is to use the Get-Member
cmdlet. So running something like:
Get-Group | Get-Member
Get-Group | Select DistinguishedName | Get-Member
Should return something like this:
TypeName: Deserialized.Microsoft.Exchange.Data.Directory.Management.WindowsGroup
TypeName: Selected.System.Management.Automation.PSCustomObject
And as you can see from there, that is not what would be accepted from a pipeline into the Get-ADGroup
cmdlet.
answered Mar 14 at 4:05
JosephJoseph
389719
389719
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
add a comment |
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
The groups are in the same domain, but there is a cluster of Exchange servers, and sync between them is not instantaneous, hence needing to specify the server argument.
– music2myear
Mar 14 at 15:20
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
Cool man, glad you got what you needed.
– Joseph
Mar 15 at 3:31
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069917%2fps-get-set-adgroup-issues-accepting-variable-object-input%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
bl7ZyCU0wY4,KU8l uyZ5,C6f7GTlTLH 8,Jq8Ye quH,WFS0PxvnEvABFjBYjBVap4lVbBImxEVIs5d48P X 6lPFS aib5A
1
Try piping the object to your get command:
$groupDn | Get-ADGroup
– TheIncorrigible1
Mar 8 at 19:51
1
Or feed the DN directly into the
identity
parameter:get-adgroup -identity $groupdn.distinguishedname
– AdminOfThings
Mar 8 at 19:52
The reason you are having trouble is because when you pipe to
Select-Object
, you are outputting aPSObject
instead of anADGroup
object. The -identity parameter either needs a direct value that it recognizes as anADGroup
property value or anADGroup
object itself.– AdminOfThings
Mar 8 at 19:58
Running
$groupdn.distinguishedname
returns nothing and when I use that in the-Identity
parameter it tells me "Cannot validate argument on parameter 'Identity'. the Argument is null."– music2myear
Mar 8 at 20:11
1
Try with
$GroupDn = Get-ADGroup -Identity "My Group Name" | Select-Object -ExpandProperty DistinguishedName
, so$GroupDN
will contain just the DistinghuishedName of the group as string, not an object with a property calledDistinghuishedName
. Or do what @TheIncorrigible1 commented and pipe the object through to theGet-ADGroup
cmdlet and leave out the-Identity
parameter.– Theo
Mar 9 at 14:37