I've got a script to retrieve PowerPath license information from arround 2k servers, I've automated this with simple script:
for /F %%A in (server_list.txt) do (
echo %%A >> PP_license.txt
psexec \\%%A powermt check_registration | find "Key" >> PP_license.txt
)
But I'm not happy with this output file, which now looks like this:
server1
Key XXXX-XXXX
server2
Key YYYY-YYYY
Is it possible to manipulate this to get output like:
server1 XXXX-XXXX
server2 YYYY-YYYY
?
If not then I'll try do this in PowerShell.