| 
 | 
 
Autounattend.XML如何添加配置计算机名称、计算机全名呢?懂的说说 
 
 
[fly]Autounattend.XML的配置文件[/fly] 
<?xml version="1.0" encoding="utf-8"?> 
<unattend xmlns="urn:schemas-microsoft-com:unattend"> 
    <settings pass="windowsPE"> 
        <component name="Microsoft-Windows-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"> 
            <UserData> 
                <ProductKey> 
                    <Key>BYXV8-9YN72-VTF7H-8G7PT-WW8X2</Key> 
                    <WillShowUI>Never</WillShowUI> 
                </ProductKey> 
                <AcceptEula>true</AcceptEula> 
            </UserData> 
        </component> 
        <component name="Microsoft-Windows-International-Core-WinPE" 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"> 
            <SetupUILanguage> 
                <UILanguage>zh-CN</UILanguage> 
            </SetupUILanguage> 
            <InputLocale>zh-CN</InputLocale> 
            <SystemLocale>zh-CN</SystemLocale> 
            <UILanguage>zh-CN</UILanguage> 
            <UserLocale>zh-CN</UserLocale> 
        </component> 
    </settings> 
    <settings pass="specialize"> 
        <component name="Microsoft-Windows-Deployment" 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"> 
            <RunSynchronous> 
                <RunSynchronousCommand wcm:action="add"> 
                    <Order>1</Order> 
                    <Description>EnableAdmin</Description> 
                    <Path>cmd /c net user Administrator /active:yes</Path> 
                </RunSynchronousCommand> 
                <RunSynchronousCommand wcm:action="add"> 
                    <Order>2</Order> 
                    <Path>cmd /c net user Administrator_ploc /active:yes</Path> 
                    <Description>EnableAdmin_ploc</Description> 
                </RunSynchronousCommand> 
                <RunSynchronousCommand wcm:action="add"> 
                    <Order>3</Order> 
                    <Description>UnfilterAdministratorToken</Description> 
                    <Path>cmd /c reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v FilterAdministratorToken /t REG_DWORD /d 0 /f</Path> 
                </RunSynchronousCommand> 
            </RunSynchronous> 
        </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> 
                <SkipMachineOOBE>true</SkipMachineOOBE> 
            </OOBE> 
        </component> 
    </settings> 
    <cpi:offlineImage cpi:source="wim:d:/sources/install.wim#Windows 8 Enterprise" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> 
</unattend> |   
 
 
 
 |