Neally Bot<\/li>\n<\/ul>","upvoteCount":0,"datePublished":"2021-07-21T23:03:06.000Z","url":"https://community.spiceworks.com/t/listing-proxyaddresses-on-separate/806235/2","author":{"@type":"Person","name":"Neally","url":"https://community.spiceworks.com/u/Neally"}},{"@type":"Answer","text":"you can do something like so:<\/p>\n
but be advised this is just for the console to LOOK AT, it’s not great if you want to export it to CSV or do further massaging<\/p>\n
$u = get-aduser neally -Properties proxyaddresses\n\n[pscustomobject]@{\n Name = $u.Name\n Proxyaddresses = $u.proxyaddresses -join \"`r`n\"\n} | Format-List\n\n<\/code><\/pre>\n <\/p>","upvoteCount":0,"datePublished":"2021-07-21T23:19:29.000Z","url":"https://community.spiceworks.com/t/listing-proxyaddresses-on-separate/806235/3","author":{"@type":"Person","name":"Neally","url":"https://community.spiceworks.com/u/Neally"}},{"@type":"Answer","text":"\n\n
<\/div>\n
ShelleyR:<\/div>\n
\nI think I am just missing something simple<\/p>\n<\/blockquote>\n<\/aside>\n
no, you are not, that’s an unusual format.<\/p>","upvoteCount":0,"datePublished":"2021-07-21T23:24:38.000Z","url":"https://community.spiceworks.com/t/listing-proxyaddresses-on-separate/806235/4","author":{"@type":"Person","name":"Neally","url":"https://community.spiceworks.com/u/Neally"}},{"@type":"Answer","text":"
Thank you, I found that solution again, but didn’t try it, remembering it to be much simpler. Should have tested it, thank you for pointing me with confidence.<\/p>","upvoteCount":0,"datePublished":"2021-07-22T19:11:27.000Z","url":"https://community.spiceworks.com/t/listing-proxyaddresses-on-separate/806235/5","author":{"@type":"Person","name":"shelleyrosencrantz2760","url":"https://community.spiceworks.com/u/shelleyrosencrantz2760"}},{"@type":"Answer","text":"
What was the solution? There are many ways to accomplish the same thing.<\/p>","upvoteCount":0,"datePublished":"2021-07-22T19:16:08.000Z","url":"https://community.spiceworks.com/t/listing-proxyaddresses-on-separate/806235/6","author":{"@type":"Person","name":"Neally","url":"https://community.spiceworks.com/u/Neally"}},{"@type":"Answer","text":"
I tested your solution, it works as I need it to, so I am using it.<\/p>\n
It is one of those things that I have had it before and I clearly remember back when I initially found the solution and thinking “Boy, that was too simple” but then never kept it noted and somehow reverted my script.<\/p>\n
Thank you again for your time in answering my questions. Next time I will add my code appropriately.<\/p>","upvoteCount":0,"datePublished":"2021-07-22T19:39:42.000Z","url":"https://community.spiceworks.com/t/listing-proxyaddresses-on-separate/806235/7","author":{"@type":"Person","name":"shelleyrosencrantz2760","url":"https://community.spiceworks.com/u/shelleyrosencrantz2760"}}]}}
Neally
(Neally)
July 21, 2021, 11:03pm
2
If you post code, please use the ‘Insert Code’ button. Please and thank you!
Hi, and welcome to the PowerShell forum!
Don’t apologize for being a “noob” or “newbie” or “n00b.” There’s just no need – nobody will think you’re stupid, and the forums are all about asking questions. Just ask!
Use a descriptive subject. Don’t say “Need help” or “PowerShell Help”, actually summarize what the problem is. It helps the rest of us keep track of which problem is which.
Don’t post massive scripts. We’re all volunteers and we don’t have time to read all that, nor will we copy…