Guest User

Untitled

a guest
Nov 9th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. $csvCreate:
  2.  
  3. Server Names Services Name
  4. ------------ --------------
  5. abc mn
  6. 123 OK
  7. $csvCreate1:
  8.  
  9. Server Names Mounts
  10. ------------ ------
  11. abc OK
  12. 123 /etc/999
  13.  
  14. Server Names Services Name Mounts
  15. ------------ ------------- -------
  16. abc mn OK
  17. 123 OK /etc/999
  18.  
  19. $csvCreate = $csvCreate | Select-Object ServerName,Services
  20. $csvCreate1 = $csvCreate1 | Select-Object Mounts
  21. $finalData = $csvCreate +$csvCreate1
  22. $finalData | Export-Csv -Path $pathComparedServicess.csv -NoTypeInformation
Add Comment
Please, Sign In to add comment