I have a CSV file with two different columns, one with PC names and one with MAC addresses like this:
PCxxxx 00-11-22-33-44-55
...
...
These values should be placed into the following CLI command:
wdsutil /Set-Device /Device:PCxxxx /ID:00-11-22-33-44-55
Now since there are about 200 of them, I want to automate this.
As a matter of interest, could one do this with batch? Would be quite complicated, right? I thought of arrays, but don't think one can do this in batch.
Maybe with powershell it'd be a bit easier.