PowerShell Преобразует текст 20 МБ в байты
$str = '3GB'
$int64 = [int64]$str.Replace('GB','') * 1GB
Muddy Manx
$str = '3GB'
$int64 = [int64]$str.Replace('GB','') * 1GB