通过Sysprep封装系统

<?xml version="1.0" encoding="utf-8"?>

<unattend xmlns="urn:schemas-microsoft-com:unattend">

    <servicing></servicing>

    <settings pass="specialize">

        <component name="Microsoft-Windows-Shell-Setup" 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">

            <ProductKey>33PXH-7Y6KF-2VJC9-XBBR8-HVTHH</ProductKey>

            <ComputerName>*</ComputerName>

            <TimeZone>China Standard Time</TimeZone>

        </component>

        <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>

    </settings>

    <settings pass="oobeSystem">

        <component name="Microsoft-Windows-International-Core" 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">

            <InputLocale>zh_CN</InputLocale>

            <SystemLocale>zh_CN</SystemLocale>

            <UILanguage>zh_CN</UILanguage>

            <UserLocale>zh_CN</UserLocale>

        </component>

        <component name="Microsoft-Windows-Shell-Setup" 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">

            <AutoLogon>

                <Password>

                    <Value>cABAADUANQB3AE8AcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value>

                    <PlainText>false</PlainText>

                </Password>

                <Enabled>true</Enabled>

                <Username>Administrator</Username>

                <LogonCount>1</LogonCount>

            </AutoLogon>

            <OOBE>

                <NetworkLocation>Work</NetworkLocation>

                <ProtectYourPC>1</ProtectYourPC>

                <HideEULAPage>true</HideEULAPage>

                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>

                <SkipMachineOOBE>true</SkipMachineOOBE>

                <SkipUserOOBE>true</SkipUserOOBE>

            </OOBE>

            <UserAccounts>

                <AdministratorPassword>

                    <Value>cABAADUANQB3AE8AcgBkAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>

                    <PlainText>false</PlainText>

                </AdministratorPassword>

            </UserAccounts>

            <FirstLogonCommands>

                <SynchronousCommand wcm:action="add">

                    <Order>1</Order>

                    <CommandLine>C:\Windows\System32\WindowsPowerShell\v1.0\Powershell.exe -executionpolicy unrestricted rename.ps1</CommandLine>

                </SynchronousCommand>

            </FirstLogonCommands>

        </component>

    </settings>

    <cpi:offlineImage cpi:source="catalog:d:/sources/install_windows 7 enterprise.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> 

</unattend>

 

 

你可能感兴趣的:(SYS)