Sysprep.exe 및 Unattend.xml - 제품 키 자동 적용이 작동하지 않음

Sysprep.exe 및 Unattend.xml - 제품 키 자동 적용이 작동하지 않음

내 목표는 새 제품 키를 입력할 필요성을 제거하여 OOBE 프로세스(sysprep에 의해 시작됨)를 자동화하는 것입니다. sysprep을 통해 제품 키를 실행했기 때문에 이미 제품 키가 있습니다. 시스템이 이미 활성화되어 있으므로 단계를 완전히 건너뛰어도 괜찮습니다. 하지만 그냥 시스템에서 이미 사용하고 있는 제품 키를 제공하는 것이 더 쉬울 수도 있겠다는 생각이 들었습니다.

저는 sysprep을 처음으로 사용하고 있습니다. sysprep 폴더에 unattend.xml 파일을 저장했습니다. 최대한 간단하게 만들려고 노력했습니다. 내 파일은 다음과 같습니다.

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="specialize">
    <component name="Microsoft-Windows-Shell-Setup"
     processorArchitecture="amd64"
     publicKeyToken="31bf3856ad364e35"
     language="neutral"
     versionScope="nonSxS"
     xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <ProductKey>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</ProductKey>
    </component>
    </settings>
</unattend>

이를 생성하기 위해 여기에서 Microsoft 설명서를 살펴보았습니다.https://technet.microsoft.com/en-us/library/cc732280%28v=ws.10%29.aspx

그러나 이것은 작동하지 않았습니다. 일반 OOBE에서 아무런 변화도 보이지 않았고, 제품 키를 묻는 화면이 계속 표시되었습니다.

sysprep.exe /oobe /reboot /unattend:unattend.xml디렉터리 에 저장된 unattend.xml을 사용하여 sysprep을 시작했습니다 C:\Windows\System32\Sysprep. 또한 해당 디렉토리에서 명령을 실행했습니다.

또한 StackExchange에서 여러 주제를 찾아보았는데 무인 파일과 관련된 주제가 많이 있지만 대부분은 매우 오래되었거나 제품 키 적용과 관련이 없습니다.

내 질문

unattend.xml 파일을 사용하여 sysprep에서 시작된 OOBE 중에 자동으로 키를 적용하거나 키 적용을 건너뛸 수 있습니까?

답변1

아마도 이것이 당신에게 도움이 될 것입니다

<component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SkipAutoActivation>true</SkipAutoActivation>
</component>
<component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SkipAutoActivation>true</SkipAutoActivation>
</component>

아니면 생성기를 사용해 보세요:http://windowsafg.no-ip.org/win10x86_x64.html

관련 정보