Guest User

Untitled

a guest
Mar 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. get-childItem "C:UsersuserDocumentsAzureIntunemanagement*.csv" | foreach {
  2.  
  3. $filePath = $_
  4.  
  5. $lines = $lines = Get-Content $filePath | Select -Skip 1
  6. $linesToWrite = switch($getFirstLine) {
  7. $true {$lines}
  8. $false {$lines | Select -Skip 1}
  9.  
  10. }
  11.  
  12. $getFirstLine = $false
  13. Add-Content "C:UsersuserDocumentsAzureIntunemanagementmaster_list.csv" $linesToWrite
  14. }
Add Comment
Please, Sign In to add comment