亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費注冊 查看新帖 |

Chinaunix

  平臺 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 6587 | 回復: 1
打印 上一主題 下一主題

[Windows 7] WDS 無人值守自動安裝windows7問題 [復制鏈接]

論壇徽章:
0
跳轉到指定樓層
1 [收藏(0)] [報告]
發(fā)表于 2014-06-13 16:45 |只看該作者 |倒序瀏覽
本帖最后由 linewer 于 2014-06-13 16:45 編輯

通過windows server 2008 wds自動安裝windows7,目前遇到兩個地方無法自動化(相關截圖見附件)
1).選擇要安裝的操作系統(tǒng)
    AutoUnattend.xml是通過系統(tǒng)鏡像管理器制作的,其中選的就是windows7旗艦版
  其中相關段寫成:
   <cpifflineImage cpi:source="catalog:c:/windows7_iso/sources/install_windows 7 ultimate.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
   或者
<cpifflineImage cpi:source="wim:c:/windows7_iso/sources/install.wim#Windows 7 ultimate" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
都沒效果

2).將windows安裝到何處 ----->引申一下,如何自動分區(qū)并安裝系統(tǒng)?

AutoUnattend.xml見下,這個應該怎么修改呢?多謝!
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  3.     <settings pass="windowsPE">
  4.         <component name="Microsoft-Windows-International-Core-WinPE" 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">
  5.             <SetupUILanguage>
  6.                 <UILanguage>zh-CN</UILanguage>
  7.             </SetupUILanguage>
  8.             <InputLocale>zh-CN</InputLocale>
  9.             <SystemLocale>zh-CN</SystemLocale>
  10.             <UILanguage>zh-CN</UILanguage>
  11.             <UserLocale>zh-CN</UserLocale>
  12.         </component>
  13.         <component name="Microsoft-Windows-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">
  14.             <UserData>
  15.                 <AcceptEula>true</AcceptEula>
  16.                 <ProductKey>
  17.                     <WillShowUI>OnError</WillShowUI>
  18.                 </ProductKey>
  19.             </UserData>
  20.             <WindowsDeploymentServices>
  21.                 <Login>
  22.                     <Credentials>
  23.                         <Domain>my.com</Domain>
  24.                         <Password>password2014</Password>
  25.                         <Username>Administrator</Username>
  26.                     </Credentials>
  27.                 </Login>
  28.             </WindowsDeploymentServices>
  29.             <DiskConfiguration>
  30.                 <Disk wcm:action="add">
  31.                     <DiskID>0</DiskID>
  32.                     <WillWipeDisk>true</WillWipeDisk>
  33.                 </Disk>
  34.             </DiskConfiguration>
  35.             <ImageInstall>
  36.                 <OSImage>
  37.                     <InstallFrom>
  38.                         <MetaData wcm:action="add">
  39.                             <Key>/image/index</Key>
  40.                             <Value>5</Value>
  41.                         </MetaData>
  42.                     </InstallFrom>
  43.                     <InstallTo>
  44.                         <DiskID>0</DiskID>
  45.                         <PartitionID>2</PartitionID>
  46.                     </InstallTo>
  47.                 </OSImage>
  48.             </ImageInstall>
  49.         </component>
  50.     </settings>
  51.     <settings pass="specialize">
  52.         <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">
  53.             <ComputerName>ZBEZJ</ComputerName>
  54.         </component>
  55.         <component name="Microsoft-Windows-Security-Licensing-SLC-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">
  56.             <SkipAutoActivation>true</SkipAutoActivation>
  57.         </component>
  58.     </settings>
  59.     <settings pass="oobeSystem">
  60.         <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">
  61.             <OOBE>
  62.                 <SkipMachineOOBE>true</SkipMachineOOBE>
  63.             </OOBE>
  64.             <TimeZone>China Standand Time</TimeZone>
  65.             <AutoLogon>
  66.                 <Password>
  67.                     <Value>UABhAHMAcwB3AG8AcgBkAA==</Value>
  68.                     <PlainText>false</PlainText>
  69.                 </Password>
  70.                 <Username>Administrator</Username>
  71.                 <Enabled>true</Enabled>
  72.             </AutoLogon>
  73.         </component>
  74.     </settings>
  75.     <cpi:offlineImage cpi:source="catalog:c:/windows7_iso/sources/install_windows 7 ultimate.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  76. </unattend>
復制代碼

論壇徽章:
0
2 [報告]
發(fā)表于 2014-06-13 16:48 |只看該作者
剛才不知怎么,上傳不了附件...

Screenshot-Untitled Window-2.png (297.1 KB, 下載次數(shù): 65)

Screenshot-Untitled Window-2.png

Screenshot-Untitled Window-3.png (290.21 KB, 下載次數(shù): 58)

Screenshot-Untitled Window-3.png
您需要登錄后才可以回帖 登錄 | 注冊

本版積分規(guī)則 發(fā)表回復

  

北京盛拓優(yōu)訊信息技術有限公司. 版權所有 京ICP備16024965號-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報專區(qū)
中國互聯(lián)網(wǎng)協(xié)會會員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關心和支持過ChinaUnix的朋友們 轉載本站內容請注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP