Hello,I'm trying to cycle thru a list of groups and update the notes section with the of business owner from another list.
What is the best way to accomplish this task?
Clear-Host$groups=gcc:\temp\internalgrps.txt$BusOwner=gcc:\temp\BusOwners.txtForeach ($groupin$groups) {Foreach ($boin$BusOwner){Set-ADGroup-Identity$group-Add @{'info'="Business Owner: $bo" }}}