Powershell: Read value from xml files
        Posted  
        
            by DanielR
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by DanielR
        
        
        
        Published on 2010-03-22T14:59:52Z
        Indexed on 
            2010/03/22
            15:41 UTC
        
        
        Read the original article
        Hit count: 532
        
powershell
I need some with help with PowerShell, please. It should be pretty easy:
I have a list of subdirectories, with a xml file in each one. I want to open each xml file and print the value of one node. The node is always the same, as the xml files are actually project files (*.csproj) from Visual Studio.
I already got the list of files: get-item ** \ *.csproj
How do I proceed?
© Stack Overflow or respective owner