PowerShell convertit le texte 20 Mo en octets
$str = '3GB'
$int64 = [int64]$str.Replace('GB','') * 1GB
Muddy Manx
$str = '3GB'
$int64 = [int64]$str.Replace('GB','') * 1GB