[powershell] RE: Powershell array question and formatting question

2017-10-19 Thread Raymond Peng
Ah - that makes sense. The formatting threw me off as I could not see any property via get-member that looked like Destination. Love the feedback from these posts, thank you Michael and all!! Thank you, Ray From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Beha

[powershell] RE: Powershell array question and formatting question

2017-10-19 Thread Donnie Taylor
Avoid using '+=' for anything. Every time you add something using that method, it destroys and recreates the entire array. For small lists that not a big deal, but for large lists it is a performance nightmare. I personally prefer array lists for ease of manipulation, and the fact that I can