|
|
8#

楼主 |
发表于 2018-12-14 11:32:23
|
只看该作者
这样操作了,还是不行
Sysprep执行全新oobe后,出现用户设置的第一个面板(国家或地区、时间和货币、键盘布局)时,右下角的输入法显示的是极点输入法,只要用户点击面板中的下一步,右下角的输入法马上就变成了英文输入法,输入法列表里也没有极点输入法了,只有用户登陆后手动添加极点输入法
在网上搜索到用命令添加输入法
control intl.cpl,,/f:"DefaultInput.xml"
把它用在应答文件中成功了,有极点输入法并且固定在任务栏上了
-----------------------------------------------------------------------------------
DefaultInput.xml内容如下:
<?xml version="1.0" encoding="utf-8"?>
<gs:GlobalizationServices xmlns:gs="urn:longhornGlobalizationUnattend">
<!--User List-->
<gs:UserList>
<gs:User UserID="Current" CopySettingsToDefaultUserAcct="true"/>
</gs:UserList>
<!--input preferences-->
<gs:InputPreferences>
<!--add jd keyboard-->
<gs:InputLanguageID Action="add" ID="0804:e0010804" Default="true"/> 0804:e0010804是极点输入法的ID
</gs:InputPreferences>
</gs:GlobalizationServices>
-----------------------------------------------------------------------------------
应答文件内容如下:
<?xml version='1.0' encoding='utf-8'?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="oobeSystem">
<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">
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<CommandLine>control intl.cpl,,/f:"C:\Windows\Panther\DefaultInput.xml"</CommandLine>
</SynchronousCommand>
</FirstLogonCommands>
</component>
</settings>
</unattend>
|
|