Hi all
I have this:
(dir D:\WS\App1\bin\RL.Cservice.Core.dll).VersionInfo | select @{N=‘App1’;E={$.FileVersion}}
(dir D:\WS\App2\bin\RL.Cservice.Core.dll).VersionInfo | select @{N=‘App2’;E={$.FileVersion}}
The problem is that when I run it , I get only reply on the fist line
(
App1
1.2.34.0
)
I need to be able to get answer for each line (there are more than these 2 in total)
(something like
App1
1.2.34.0
App2
1.2.34.0
)
so I will be able to export it as report in HTML/txt or different type.