AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • Início
  • system&network
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • Início
  • system&network
    • Recentes
    • Highest score
    • tags
  • Ubuntu
    • Recentes
    • Highest score
    • tags
  • Unix
    • Recentes
    • tags
  • DBA
    • Recentes
    • tags
  • Computer
    • Recentes
    • tags
  • Coding
    • Recentes
    • tags
Início / server / Perguntas / 768377
Accepted
SQL Hammer
SQL Hammer
Asked: 2016-04-06 11:28:22 +0800 CST2016-04-06 11:28:22 +0800 CST 2016-04-06 11:28:22 +0800 CST

Windows Nano Server 2016 CTP4 - Não é possível encontrar o tipo WIM2VHD.WimFile

  • 772

Alguma ideia de como posso lidar com esse erro ao tentar criar um 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
**********************

Código do 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
windows-server-2016
  • 1 1 respostas
  • 184 Views

1 respostas

  • Voted
  1. Best Answer
    SQL Hammer
    2016-04-06T16:41:37+08:002016-04-06T16:41:37+08:00

    Eu estava perdendo uma etapa crítica.

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

    Eu precisava criar um arquivo VHD ou VHDX a partir do arquivo NanoServer.wim que está disponível na mídia de instalação do Windows Server 2016.

    • 1

relate perguntas

Sidebar

Stats

  • Perguntas 205573
  • respostas 270741
  • best respostas 135370
  • utilizador 68524
  • Highest score
  • respostas
  • Marko Smith

    Você pode passar usuário/passar para autenticação básica HTTP em parâmetros de URL?

    • 5 respostas
  • Marko Smith

    Ping uma porta específica

    • 18 respostas
  • Marko Smith

    Verifique se a porta está aberta ou fechada em um servidor Linux?

    • 7 respostas
  • Marko Smith

    Como automatizar o login SSH com senha?

    • 10 respostas
  • Marko Smith

    Como posso dizer ao Git para Windows onde encontrar minha chave RSA privada?

    • 30 respostas
  • Marko Smith

    Qual é o nome de usuário/senha de superusuário padrão para postgres após uma nova instalação?

    • 5 respostas
  • Marko Smith

    Qual porta o SFTP usa?

    • 6 respostas
  • Marko Smith

    Linha de comando para listar usuários em um grupo do Windows Active Directory?

    • 9 respostas
  • Marko Smith

    O que é um arquivo Pem e como ele difere de outros formatos de arquivo de chave gerada pelo OpenSSL?

    • 3 respostas
  • Marko Smith

    Como determinar se uma variável bash está vazia?

    • 15 respostas
  • Martin Hope
    Davie Ping uma porta específica 2009-10-09 01:57:50 +0800 CST
  • Martin Hope
    kernel O scp pode copiar diretórios recursivamente? 2011-04-29 20:24:45 +0800 CST
  • Martin Hope
    Robert ssh retorna "Proprietário incorreto ou permissões em ~/.ssh/config" 2011-03-30 10:15:48 +0800 CST
  • Martin Hope
    Eonil Como automatizar o login SSH com senha? 2011-03-02 03:07:12 +0800 CST
  • Martin Hope
    gunwin Como lidar com um servidor comprometido? 2011-01-03 13:31:27 +0800 CST
  • Martin Hope
    Tom Feiner Como posso classificar a saída du -h por tamanho 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich O que é um arquivo Pem e como ele difere de outros formatos de arquivo de chave gerada pelo OpenSSL? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent Como determinar se uma variável bash está vazia? 2009-05-13 09:54:48 +0800 CST

Hot tag

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • Início
  • Perguntas
    • Recentes
    • Highest score
  • tag
  • help

Footer

AskOverflow.Dev

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve