Share via


wdsutil export-image

적용 대상: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012

다른 Windows 이미지 (.wim) 파일에 이미지 저장소에서 기존 이미지를 내보냅니다.

구문

부팅 이미지:

wdsutil [options] /Export-Image image:<Image name> [/Server:<Servername>]
    imagetype:Boot /Architecture:{x86 | ia64 | x64} [/Filename:<Filename>]
     /DestinationImage
         /Filepath:<Filepath and name>
         [/Name:<Name>]
         [/Description:<Description>]
     [/Overwrite:{Yes | No}]

설치 이미지:

wdsutil [options] /Export-Image image:<Image name> [/Server:<Servername>]
    imagetype:Install imageGroup:<Image group name>]
     [/Filename:<Filename>]
     /DestinationImage
         /Filepath:<Filepath and name>
         [/Name:<Name>]
         [/Description:<Description>]
     [/Overwrite:{Yes | No | append}]

매개 변수

매개 변수 설명
이미지:<Imagename> 내보낼 이미지의 이름을 지정 합니다.
[/ 서버:<Servername>] 서버 이름을 지정합니다. 이 NetBIOS 이름 또는 정규화 된 도메인 이름 (FQDN) 수 있습니다. 서버 이름이 없는 지정 하는 경우 로컬 서버 사용 됩니다.
imagetype:{Boot|Install} 내보낼 수는 이미지의 유형을 지정 합니다.
\imageGroup:<Image group name>] 내보낼 이미지가 포함 된 이미지 그룹을 지정 합니다. 이미지 그룹 이름을 지정 하지 않으면 하나의 이미지 그룹 서버에 존재 하는 경우에 해당 이미지 그룹 기본적으로 사용 됩니다. 이미지 그룹 둘 이상의 서버에 있는 경우에 이미지 그룹을 지정 되어야 합니다.
/아키텍처:{x86|ia64|x64} 내보낼 이미지의 아키텍처를 지정 합니다. 다른 아키텍처에서 부팅 이미지에 동일한 이미지 이름을 가질 수 있기 때문에 아키텍처 값을 지정 하는 올바른 이미지를 반환할 것을 확인 합니다.
[/ 파일 이름:<Filename>] 이미지를 이름으로 고유하게 식별할 수 없으면 파일 이름을 지정해야 합니다.
/ DestinationImage 대상 이미지에 대 한 설정을 지정합니다. 다음 옵션을 사용 하 여 이러한 설정을 지정할 수 있습니다.
  • /Filepath:<Filepath and name> - 새 이미지의 전체 파일 경로를 지정합니다.
  • [/Name:<Name>] - 이미지의 표시 이름을 설정합니다. 이름이 없는 지정 하는 경우 원본 이미지의 표시 이름을 사용 됩니다.
  • [/Description: <Description>] - 이미지에 대한 설명을 설정합니다.
[/덮어쓰기:{Yes|No|append}] /Filepath에 해당 이름의 기존 파일이 이미 있는 경우 /DestinationImage 옵션에 지정된 파일을 덮어쓸지 여부를 결정합니다. 옵션을 사용하면 기존 파일을 덮어쓰고, 이름이 같은 파일이 이미 있는 경우 No 옵션(기본값)으로 인해 오류가 발생하고, 추가 옵션을 사용하면 생성된 이미지가 기존 .wim 파일 내에 새 이미지로 추가됩니다.

예제

부팅 이미지를 내보내려면 다음 중 하나를 입력합니다.

wdsutil /Export-Image image:WinPE boot image imagetype:Boot /Architecture:x86 /DestinationImage /Filepath:C:\temp\boot.wim
wdsutil /verbose /Progress /Export-Image image:WinPE boot image /Server:MyWDSServer imagetype:Boot /Architecture:x64 /Filename:boot.wim /DestinationImage /Filepath:\\Server\Share\ExportImage.wim /Name:Exported WinPE image /Description:WinPE Image from WDS server /Overwrite:Yes

설치 이미지를 내보내려면 다음 중 하나를 입력합니다.

wdsutil /Export-Image image:Windows Vista with Office imagetype:Install /DestinationImage /Filepath:C:\Temp\Install.wim
wdsutil /verbose /Progress /Export-Image image:Windows Vista with Office /Server:MyWDSServer imagetype:Instal imageGroup:ImageGroup1 /Filename:install.wim /DestinationImage /Filepath:\\server\share\export.wim /Name:Exported Windows image /Description:Windows Vista image from WDS server /Overwrite:append