How can i only select the first row (Name) from this Output in powershell? Output
The Code is this one:
1. Import-Module "C:\CMI\Entwicklung\MetaTool\packages\psake.4.5.0\tools\psake.psm1"
2. invoke-psake -buildFile "C:\CMI\Entwicklung\MetaTool\Build\default.ps1" -docs;
I want to have only the names from this list.
Thank you!
Pipe the Output to select-object:
Edit