Forum Discussion

tolinrome's avatar
tolinrome
Level 4
11 years ago

Powershell and job history

Hello,

I'm trying to find a way in which I can run the Powershell command "Get-BEJobHistory" on remote machines and have the value for "TotalDataSizeBytes" changed to GB instead. I can easily run  "Get-BEJobHistory | fl" on the local server, but in an environment with many backup servers it would be very useful to be able to run a script with all the servers in it and return the datasize in GB format. btw, I do not know scripting.

Can anyone help with this? Thanks.

  • To convert bytes to GB in Powershell, just divide the value by 1GB, e.g.

    $bytes = 123455758625

    $gb = $bytes/1GB

1 Reply

  • To convert bytes to GB in Powershell, just divide the value by 1GB, e.g.

    $bytes = 123455758625

    $gb = $bytes/1GB