Microsoft Virtualization Discussions

equal plus

JSHACHER11
4,623 Views

Hi guys,

I saw this in some scripts and could not get my head around it:

$filers += "filer1"

$filers += "filer2"

Can you please explain that?

Cheers

Joel

1 ACCEPTED SOLUTION

vinith
4,623 Views

It's done to add individual elements to an array.

$filers Is a array and individual filer names are added to the array.

View solution in original post

8 REPLIES 8

vinith
4,624 Views

It's done to add individual elements to an array.

$filers Is a array and individual filer names are added to the array.

JSHACHER11
4,623 Views

so it is the same as:

$filers = "filer1","filer2"

?

thanks

vinith
4,623 Views

Yes.

JSHACHER11
4,623 Views

great, thanks!

JGPSHNTAP
4,623 Views

Joel -

Don't take this the wrong way, but I would suggest grabbing a powershell book from amazon and flipping through it

Also, for general powershell questions, I would use a forum site @ powershell.com or powershell.org.

Even though i'm just a customer, this community is for Powershell for Netapp mainly

But to answer your questions += usually when you stuff an array of custom objects, and $filers = "1","2" - creates an array so you can do something like $filerrs | % { }

JSHACHER11
4,623 Views

I'm already reading a book by Dr. Tobias Weltner called "Matering PowerShell" but that issue wasn't mentioned there

Don't take this the wrong way but the way I see it, you can either answer my questions or not. If you think this is not the right question for you then don't answer and BTW, I really appreciate the help so far..

vinith
4,623 Views

JSHACHER11
4,623 Views

Looks good - I'll check it out

Thanks

Public