Guest User

Untitled

a guest
Mar 20th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. $datos = Import-Csv .Desktopstack.csv
  2.  
  3. $datos.DirectorySizeOnDisk = $datos.DirectorySizeOnDisk / 1073741824
  4.  
  5. $datos | Export-Csv .Desktopstack.csv -NoTypeInformation
  6.  
  7. $datos = Import-Csv .Desktopstack.csv
  8. $datos.DirectorySizeOnDisk = $datos.DirectorySizeOnDisk / 1073741824
  9. $datos | Export-Csv .Desktopstack.csv -NoTypeInformation
  10.  
  11. ($datos = Import-Csv .Desktopstack.csv) | ForEach {
  12. $_.DirectorySizeOnDisk = $_.DirectorySizeOnDisk / 1073741824
  13. }
  14. $datos | Export-Csv .Desktopstack.csv -NoTypeInformation
Add Comment
Please, Sign In to add comment