Answers for "powershell bytes to mb"

0

powershell bytes to mb

$window.FindName("TargetSizeKB").Text = "500"
$sizeKB = $window.FindName("TargetSizeKB").Text -as [int]
# Umrechnung in MB
$sizeBytes = $sizeKB * 1000
Posted by: Guest on October-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language