原版Windows10免封装跳过oobe定制专属系统

[1]封装系统是一个很麻烦的事,但是原版系统安装更麻烦,懒人有懒招,分享一个不用封装就可以跳过OOBE设置账户等信息的步骤,部署完重启直接进入系统,其实就是个应答文件,保持了原版系统的原汁原味,不做任何更改,如果有需要修改前可以用DISM++等工具进行适当的优化再修改,比如开启NET3.5,集成最新补丁,去掉快捷方式箭头,桌面显示此电脑,去除自带APP等等,论坛里教程多得是,我就不多说了,这个要看个人需求了.大神请无视。所有步骤都可以在PE下完成

PE使用天空的优启通。

  1. 首先用Easy Image X展开Windows10映像到C盘,不要重启
  2. C:/Windows下新建panther文件夹 在C:/Windows下新建panther文件夹
  3. 然后在C:\Window\panther文件夹下新建文本把下面代码复制进去重命名为Unattend.xml注意后缀名 这样就可以跳过oobe了,亲测Windows10_1809专业版和家庭版有效,部署后直接进入系统,免去了复杂的账户设置等步骤.
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<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>
<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">
<ImageInstall>
<OSImage>
<InstallToAvailablePartition>false</InstallToAvailablePartition>
<WillShowUI>OnError</WillShowUI>
</OSImage>
</ImageInstall>
<UserData>
<ProductKey>
<Key>*****-*****-*****-*****-*****</Key>
<WillShowUI>OnError</WillShowUI>
</ProductKey>
<AcceptEula>true</AcceptEula>
<FullName>Windows8</FullName>
<Organization>WORKGROUP</Organization>
</UserData>
</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>
<SkipUserOOBE>false</SkipUserOOBE>
</OOBE>
<AutoLogon>
<Username>Administrator</Username>
<Enabled>true</Enabled>
<LogonCount>1</LogonCount>
</AutoLogon>
<LogonCommands>
<AsynchronousCommand wcm:action="add">
<CommandLine>%WINDIR%\1.cmd</CommandLine>
<Description>Active</Description>
<Order>1</Order>
</AsynchronousCommand>
</LogonCommands>
</component>
</settings>
<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>
<TimeZone>China Standard Time</TimeZone>
</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>
</settings>
<cpi:offlineImage cpi:source="wim:f:/install.wim#Windows 8 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

优化程序

至于批处理需要运行什么就要看你自己的需要了,我是用了几个批处理更改了壁纸,调整睡眠方案,安装了输入法和压缩软件,更改了计算机OEM信息,你也可以安装运行库,支持静默安装的软件都可以的,发挥你的想象力吧

更改完毕记得保存映像放到U盘,配合天空优启通Easy Image X恢复映像时勾选万能驱动,这样部署时就可以自动安装驱动了,完美!

只是分享一下自己的方法,如果你有更好的方法就更好了,觉得好就试一下,不好请勿喷,谢谢


  1. 文章转自it天空-金正电脑