正在将输入变量转换为Uint64



我在编写创建新VHD(用于创建网络优化包的工具)的脚本时遇到问题。下面的脚本基本上提取输入目录的总大小,并将其作为变量传递给$intval函数,该函数将以字节为单位的大小转换为字符串$size(nGB)。

我遇到的问题是cmdlet NEW-VHD要求-SizeBytes参数的格式为Uint64。如果您手动输入参数,例如

NEW-VHD -path $vhdpath -fixed -SizeBytes 10GB

cmdlet按预期运行,并在接受10GB作为Uint64时创建VHD。我需要的是以某种方式将变量$size转换为Uint64,同时保留后面的GB。在这个场景中有没有模仿用户输入的方法?

我知道下面的脚本没有经过优化或看起来最好,因为它只是概念的证明。欢迎对上述问题提出任何建议!

代码

$dir = Read-Host 'What is the directory you are wishing to store inside a VHD?'
$objFSO = New-Object -com Scripting.FileSystemObject
$intval = $objFSO.GetFolder($dir).Size / 1GB
$size = "{0:N0}GB" -f $intval
$vhd = Read-Host 'What volume name do you wish to call your VHD (no spaces)?'
$vhdname = ($vhd + ".vhdx")
$vhdpath = ("C:VHD" + $vhdname)
NEW-VHD -fixed -path $vhdpath -SizeBytes $size

我看了一些微软的资源,但找到了空的

修改后的代码

$dir = Read-Host 'What is the directory you are wishing to store inside a VHD?'
$objFSO = New-Object -com Scripting.FileSystemObject
$intval = $objFSO.GetFolder($dir).Size
$size = $intval / 1GB
$vhd = Read-Host 'What volume name do you wish to call your VHD (no spaces)?'
$vhdname = ($vhd + ".vhdx")
$vhdpath = ("C:VHD" + $vhdname)
NEW-VHD -fixed -path $vhdpath -SizeBytes $size

只需使用此:

$size = $intval / 1G

PowerShell有一个内置常量(GB),用于将值转换为GB。另请参见此处。

编辑:看了你的评论,我好像误解了你的问题。新的vhd需要以字节为单位的大小。如果你想要10 GB,你可以这样赋值:

$size = [bigint] 10GB

你的问题中不清楚的是:"我需要的是变量$size以某种方式转换为Uint64,同时保留后面的GB"。

以下是我为解决这个奇怪的小错误而编写的代码。

#-------------------------------VHD CREATION-------------------------------------#
#Create a VHD with a size of 3MB to get around variable bug
        New-VHD -Path $vhdpath -SizeBytes 3MB -Fixed
#Resize to target dir + extra
        Resize-VHD -Path $vhdpath -SizeBytes $size
#Mount/Format and Recursively Copy Items
        Mount-VHD $vhdpath -Passthru | Initialize-Disk -Passthru | New-Partition -UseMaximumSize | 
        Format-Volume -FileSystem NTFS -NewFileSystemLabel $volumename -Confirm:$false
            $drive = gwmi win32_volume -Filter "DriveLetter = null"
            $drive.DriveLetter = "B:"
            $drive.Put()
        Copy-Item -Force -Recurse -Verbose $dir -Destination "B:" -ea SilentlyContinue
#Dismount
Dismount-VHD $vhdpath

有点晚了,但我只是在处理同样的问题。这是我发现的作品。

#Get the size of the folder
$FolderSize = (Get-ChildItem $ExportFolder -recurse | Measure-Object -property length -sum)
#Round it and convert it to GBs
[uint64]$Size = "{0:N0}" -f ($FolderSize.sum / 1GB)
#Add 1GB to make sure there is enough space
$Size = ($Size * 1GB) + 1GB
#Create the VHD
New-VHD -Path $VHDXFile -Dynamic -SizeBytes $Size

希望它能帮助其他人

这就是我在使用配置文件进行服务器构建时解决此问题的方法:

# Get a string of the desired size (#KB, #MB, #GB, etc...)
$size_as_string = "4GB"
# Force PowerShell to evaluate the string
$size_as_bytes = Invoke-Expression $size_as_string
Write-Host "The string '$size_as_string' converts to '$size_as_bytes' bytes"

相关内容

  • 没有找到相关文章

最新更新