web-dev-qa-db-ja.com

Windows 7でのSysPrepの最小限の便利なunattend.xmlファイルとは

1つのワークステーションに手動でインストール、更新、設定されるWindows 7で使用するための最小限のunattend.xmlファイルを提供できますか。SysPrepは次のように実行されます。

C:\Windows\System32\sysprep>
sysprep /generalize /oobe /unattend:unattend.xml /shutdown

次に、C:パーティションを複数のワークステーションに複製しました(Linux LiveUSBのpartimageを使用しています)。

これはunattend.xmlがワークステーションを構成するため、クローン作成後に何も要求されません。 Workstationは、前に構成されたアカウントで通常のログイン画面を表示するだけです。 unattend.xmlにパスワードを保存するのに慣れていないため、ランダムなコンピューター名を作成し、Active Directoryに参加しようとしないでください。

Windows自動インストールキット(Windows AIK)からWindowsシステムイメージマネージャー(Windows SIM)を使いたくないので、これはやりすぎです。

7
Tometzky
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-Microsoft-com:unattend"
        xmlns:wcm="http://schemas.Microsoft.com/WMIConfig/2002/State"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <settings pass="generalize">
        <component name="Microsoft-Windows-PnpSysprep"
                processorArchitecture="AMD64"
                publicKeyToken="31bf3856ad364e35"
                language="neutral" versionScope="nonSxS">
            <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
        </component>
    </settings>
    <settings pass="specialize">
        <component name="Microsoft-Windows-Deployment"
                processorArchitecture="AMD64"
                publicKeyToken="31bf3856ad364e35"
                language="neutral" versionScope="nonSxS">
            <RunSynchronous>
                <RunSynchronousCommand wcm:action="add">
                    <Description>Disable create user account</Description>
                    <Path>reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Setup\OOBE /v UnattendCreatedUser /t REG_DWORD /d 1 /f</Path>
                    <Order>1</Order>
                </RunSynchronousCommand>
            </RunSynchronous>
        </component>
        <component name="Microsoft-Windows-Shell-Setup"
                processorArchitecture="AMD64"
                publicKeyToken="31bf3856ad364e35"
                language="neutral" versionScope="nonSxS">
            <RegisteredOwner>Wile E. Coyote</RegisteredOwner>
            <RegisteredOrganization>ACME Corp.</RegisteredOrganization>
            <TimeZone>Central European Standard Time</TimeZone>
            <Computername>*</Computername>
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <NetworkLocation>Other</NetworkLocation>
                <ProtectYourPC>2</ProtectYourPC>
                <SkipUserOOBE>true</SkipUserOOBE>
            </OOBE>
        </component>
    </settings>
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-International-Core"
                processorArchitecture="AMD64"
                publicKeyToken="31bf3856ad364e35"
                language="neutral" versionScope="nonSxS">
            <InputLocale>pl-PL</InputLocale>
            <SystemLocale>pl-PL</SystemLocale>
            <UILanguage>pl-PL</UILanguage>
            <UserLocale>pl-PL</UserLocale>
        </component>
    </settings>
</unattend>

変更する必要があります:

  • <RegisteredOwner>
  • <RegisteredOrganization>
  • <TimeZone>
  • ポーランド語ロケールpl-PLを自分のものに、たとえばen-US 私たちのために。
2
Tometzky

nsecureJoin を使用して、パスワードなしでドメインに参加させることができます。

0
MSCF