This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Get-QADComputer attributes

Hello,

Do we have a list of all attributes used by the command Get-QADComputer?

from the command :

"Get-QADComputer -includedproperties serviceprincipalname | where {$_.serviceprincipalname -notlike "msclustervirtualserver*"}

I would like:

1. display the serviceprincipalname on the screen

2. export all data to a csv, xls file

Thanks,

Dom

Parents
  • That will give you just a list of all the property names:

    Get-QADComputer -IncludeAllProperties -ReturnPropertyNamesOnly

    This will dump all the properties and their contents for all of your computer accounts:

    Get-QADComputer -IncludeAllProperties | export-csv "mycomputer.txt" -notypeinformation
Reply
  • That will give you just a list of all the property names:

    Get-QADComputer -IncludeAllProperties -ReturnPropertyNamesOnly

    This will dump all the properties and their contents for all of your computer accounts:

    Get-QADComputer -IncludeAllProperties | export-csv "mycomputer.txt" -notypeinformation
Children
No Data