-2
Hello, I made a bat to print information from inside an xml file (Posversion.xml) only that it only gives me the line information I searched and does not tell me which machine that file belongs to. And I want the name of the machine to which the file belongs to appear along with the information I need from it ( the "Coebuild" line). I’m using the code below.
@Echo off for /F "tokens=" %%A in (ServerList.txt) do ( findstr "COEBuild" \%%A\c$\NewPos61\PosData\POSVersion.xml >log.txt ) pause*
Someone can help me ?