At the moment i have about 1000 XML files (ranging from size 15kb to 120kb), I have a powershell script which extracts information and writes all extracts to the same LOG file!!
It works well but am only concerned with the time it takes!! it took about 1.5 hrs to finish the script! Is this normal?
How can i speed it up, your inputs and thoughts helps!!
Reading XML using the following syntax!
$Inputfile=[xml](Get-Content $XFILE)
Script has only foreach loop! and no other conditions.
cheers!