Guest User

Untitled

a guest
Jul 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $nline = $line.Split(",") #-replace """",""
  2. $properties = @{
  3. 'NombreTienda' = $nline[1]
  4. 'NombreUsuario' = $nline[3]
  5. 'NombreEquipo' = $nline[5]
  6. 'VersionSO' = $nline[7]
  7. 'Fecha' = $nline[9]
  8. 'NumeroPOS'= $nline[11]
  9. 'Accion' = $nline[13]
  10. }
  11.  
  12. $obj += New-Object PSObject -Property $properties
Add Comment
Please, Sign In to add comment