Windows Nano Server 2016 CTP4 - 找不到类型 WIM2VHD.WimFile

Windows Nano Server 2016 CTP4 - 找不到类型 WIM2VHD.WimFile

当我尝试创建 Windows Nano Server 2016 CTP4 时,有什么想法可以解决此错误吗?

**********************
Windows PowerShell transcript start
Start time: 20160405151609
Username: COMPUTERNAME\Derik
RunAs User: COMPUTERNAME\Derik
Machine: COMPUTERNAME (Microsoft Windows NT 10.0.14295.0)
Host Application: C:\WINDOWS\system32\WindowsPowerShell\v1.0\PowerShell_ISE.exe
Process ID: 15720
PSVersion: 5.1.14295.1000
PSEdition: Desktop
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1.14295.1000
CLRVersion: 4.0.30319.42000
BuildVersion: 10.0.14295.1000
WSManStackVersion: 3.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
**********************
INFO   : Looking for the requested Windows image in the WIM file
PS>TerminatingError(New-Object): "Cannot find type [WIM2VHD.WimFile]: verify that the assembly containing this type is loaded."
ERROR  : Cannot find type [WIM2VHD.WimFile]: verify that the assembly containing this type is loaded.
INFO   : Log folder is C:\Users\Derik\AppData\Local\Temp\Convert-WindowsImage\3fde98b4-a454-4ce2-86f6-cc15a22cb2b1
INFO   : Done.
**********************
Windows PowerShell transcript end
End time: 20160405151609
**********************

PowerShell 代码:

Import-Module 'C:\NanoServerImageGenerator.psm1'

$serverName = "server-name"
$password = ConvertTo-SecureString "strongPassword" -AsPlainText -Force

$VMdir = "E:\VMs\Hyper-V"
$projectDir = Join-Path $VMdir $project
$serverPath = Join-Path $projectDir $servername
$nanoBasePath = Join-Path $serverPath "NanoBase"
$VHDExtension = "vhdx"
$VHDName = "$servername.$VHDExtension"
$VHDPath = Join-Path $serverPath $VHDName

$MediaPath = "\\uncpath\InstallMedia"
$MediaName = "WindowsServer2016_CTP4_X64FRE_EN-US.ISO"
$MediaPath = Join-Path $MediaPath $MediaName

$mountResult = Mount-DiskImage $MediaPath -PassThru
$mountedDriveLetter = ($mountResult | Get-Volume).DriveLetter

$MediaPath = "$mountedDriveLetter`:\"

if(-not (Test-Path $projectDir)) { New-Item $projectDir -ItemType Directory }
if(-not (Test-Path $serverPath)) { New-Item $serverPath -ItemType Directory }
if(-not (Test-Path $nanoBasePath)) { New-Item $nanoBasePath -ItemType Directory }

#<#
New-NanoServerImage `
    -MediaPath $MediaPath `
    -BasePath $nanoBasePath `
    -TargetPath $VHDPath `
    -ComputerName $serverName `
    -OEMDrivers `
    -AdministratorPassword $password `
    -Clustering 
#>

$mountResult | Dismount-DiskImage

答案1

我错过了一个关键的步骤。

cd "C:\NanoServer\"
.\Convert-WindowsImage.ps1 -WIM 'C:\NanoServer\NanoServer.wim' `
    -VHD 'C:\NanoServer\ClusterNanoServer.vhdx' `
    -VHDFormat VHDX -SizeBytes 10GB -Edition 2 -DiskLayout UEFI

我需要从 Windows Server 2016 安装介质中提供的 NanoServer.wim 文件创建 VHD 或 VHDX 文件。

相关内容