Easier way
Get-MailContact testuser1 | %{$_. DistinguishedName }
Main Topics
Browse All TopicsHi All,
Powershell question...If I return an attribute e.g
[PS] C:\>Get-MailContact testuser1 | Select-Object DistinguishedName
How do I then convert the output...
DistinguishedName
-----------------------
cn=testuser1,ou=Contacts,D
into simply a string of "cn=testuser1,ou=Contacts,
Thanks in advance for any advice!
Regards
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks for the responses so far. The reason I ask for this is because I want to append the string into an LDAP:// connection string for a vb movehere method.
I might be missing something but If I run the code mentioned by BSonPosh and throw it into a variable I don't get the correct output but I get just a blank line..?
If I use out-string I get the full distingquised name not just the string I need. I can select the individual string but there is still whitespace surrounding it when I write-host.
Hope that makes sense and thanks for the help guys!
Business Accounts
Answer for Membership
by: llmanPosted on 2008-11-09 at 19:59:23ID: 22919084
One of many possibilities would be:
Get-MailContact testuser1 | Select-Object DistinguishedName | Out-String