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
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?










0















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?










share|improve this question

















  • 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 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






  • 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
















0















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?










share|improve this question

















  • 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 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






  • 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














0












0








0








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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












  • 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 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













  • 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 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






  • 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








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













2 Answers
2






active

oldest

votes


















1














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.






share|improve this answer






























    1














    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.






    share|improve this answer























    • 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











    Your Answer






    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
    );



    );













    draft saved

    draft discarded


















    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









    1














    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.






    share|improve this answer



























      1














      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.






      share|improve this answer

























        1












        1








        1







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 12 at 7:56









        TheoTheo

        6,1223521




        6,1223521























            1














            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.






            share|improve this answer























            • 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















            1














            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.






            share|improve this answer























            • 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













            1












            1








            1







            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.






            share|improve this answer













            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.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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

















            • 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

















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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
            9J5gMIbUNsbgA5,jFCZX8gxHs87QftPQHZF dWeHiacsukWp6qJtdJOW9Dyck az2CT3uvpcp

            Popular posts from this blog

            Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

            2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme