2019/03/11

Windows 10 の Sysprep 済みイメージの自動セットアップ用応答ファイル

Windows 10 の新バージョンが出るたびに Sysprep してみて確認しているんですが、そういえば Windows 10 で応答ファイル(Unattend.xml)を使用した Mini-Setup の自動化はやってなかったことに今さら気付く。

Windows System Image Manager(SIM、Windows ADK に収録)で作成するのは分かり難いし、面倒なので、Windows 8.1 や Windows 7 のときはいつも使っているのをメモ帳で書き換えて使ってました。でも、Windows 10 には 2 つ目のキーボードだとか、秘密の質問だとか、Cortana だとか、デバイスの履歴だとか、Windows 8.1 以前にはないセットアップ項目があって、Windows 8.1 以前と同じようにできるのか気になる。

さてどうしたものか(Windows SIM でゼロから書くのは面倒)。

試しに...


Windows 8.1 でちゃんと自動セットアップできたことがある Unattend.xml を Windows 10 の Sysprep イメージにそのまま読み込ませてみたら、無事セットアップ完了。無問題↓。




念のため、Windows SIM で Unattend.xml をチェックしてみたら...
OOBE の NetworkLocation(ネットワークの場所の指定、Windows 10 は初回ログオン時に聞いてくる)、SkipMachineOOBE(コンピューター名の入力画面、Windows 10 は自動生成)、SkipUserOOBE(ユーザー アカウントの追加だとかの画面)は使われない言われた。これらを削除したのがこちら↓。Windows 10 Enterprise x64 バージョン 1809 で確認。x86 版の場合は="amd64"="x86" に。(パスワードを平文で記述してますが、この応答ファイルを Windows SIM に読み込ませて保存すれば、パスワードを暗号化してくれます。)

 [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">
            <ComputerName>*</ComputerName>
            <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>
        </component>
        <component name="Microsoft-Windows-UnattendedJoin" 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">
            <Identification>
                <JoinWorkgroup>WORKGROUP</JoinWorkgroup>
            </Identification>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <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">
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <ProtectYourPC>3</ProtectYourPC>
            </OOBE>
            <UserAccounts>
                <LocalAccounts>
                    <LocalAccount wcm:action="add">
                        <Password>
                            <Value>P@ssw0rd</Value>
                            <PlainText>true</PlainText>
                        </Password>
                        <Group>Administrators</Group>
                        <Name>localuser</Name>
                    </LocalAccount>
                </LocalAccounts>
            </UserAccounts>
            <TimeZone>Tokyo Standard Time</TimeZone>
        </component>
        <component name="Microsoft-Windows-International-Core" 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">
            <InputLocale>ja-JP</InputLocale>
            <SystemLocale>ja-JP</SystemLocale>
            <UILanguage>ja-JP</UILanguage>
            <UserLocale>ja-JP</UserLocale>
        </component>
    </settings>
</unattend>

 [unattend.xml(Active Directory ドメイン参加用)]
<?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">
            <ComputerName>*</ComputerName>
            <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>
        </component>
        <component name="Microsoft-Windows-UnattendedJoin" 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">
            <Identification>
                <Credentials>
                    <Domain>NETBIOSドメイン名</Domain>
                    <Password>ドメインユーザーのパスワード</Password>
                    <Username>ドメインユーザーのユーザー名</Username>
                </Credentials>
                <JoinDomain>Active Directoryドメイン名</JoinDomain>
            </Identification>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <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">
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideLocalAccountScreen>true</HideLocalAccountScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                <ProtectYourPC>3</ProtectYourPC>
            </OOBE>
            <UserAccounts>
                <LocalAccounts>
                    <LocalAccount wcm:action="add">
                        <Password>
                            <Value>P@ssw0rd</Value>
                            <PlainText>true</PlainText>
                        </Password>
                        <Group>Administrators</Group>
                        <Name>localuser</Name>
                    </LocalAccount>
                </LocalAccounts>
            </UserAccounts>
            <TimeZone>Tokyo Standard Time</TimeZone>
        </component>
        <component name="Microsoft-Windows-International-Core" 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">
            <InputLocale>ja-JP</InputLocale>
            <SystemLocale>ja-JP</SystemLocale>
            <UILanguage>ja-JP</UILanguage>
            <UserLocale>ja-JP</UserLocale>
        </component>
    </settings>
</unattend>


肝心の Windows 10 Enterprise バージョン 1809 の Sysprep は、バージョン 1803 と同じ方法で成功します。

関連:
Windows 10 Enterprise バージョン 1803、ビルド 17134.48 の Sysprep イメージの作成に失敗と成功 (2018/05/10)
Windows 10 バージョン 1709、ビルド 16299.19 の Sysprep イメージの作成 (2017/10/18)
Windows 10 バージョン 1703、ビルド 15063.13 の Sysprep イメージの作成 (2017/04/06)
Windows 10 バージョン 1607、ビルド 14393.105 の Sysprep イメージの作成に失敗と成功(2016/09/01)

0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。