PowerShell: units (kb mb gb tb pb)

By Xah Lee. Date: .

Powershell units

# kibi
Write-Host (1kb)
# 1024

Write-Host ([Math]::Pow(2, 10))
# 1024

# s------------------------------

# mebi
Write-Host (1mb)
# 1048576

Write-Host ([Math]::Pow(2, 20))
# 1048576

# s------------------------------

# gibi
Write-Host (1gb)
# 1073741824

Write-Host ([Math]::Pow(2, 30))
# 1073741824

# s------------------------------

# tebi
Write-Host (1tb )
# 1099511627776

Write-Host ([Math]::Pow(2, 40))
# 1099511627776

# s------------------------------

# pebi
Write-Host (1pb)
# 1125899906842624

Write-Host ([Math]::Pow(2, 50))
# 1125899906842624

PowerShell, numbers