Quantcast
Viewing all articles
Browse latest Browse all 11

PowerShell: Generate PC Lists using Foreach-Object and -f Operator

Generate PC Lists

One easy way of creating lists of PC names or IP address ranges etc is a simple pipeline like this:

1..40 | Foreach-Object { ‘PC-W7-A{0:000}’ -f $_ }

Use the -f operator to format the number. In this example, it will always be three-digit.


Viewing all articles
Browse latest Browse all 11

Trending Articles