主要是看了兩篇文章,結合自己的實際經驗,做記錄。
需要下載的文件百度雲鏈接:https://pan.baidu.com/s/1s02Bicjh9hINmzsLGhITtw
密碼:vse7
具體步驟:
- 卸載
安裝前一定要卸載干凈!參考官網卸載幫助
- 安裝
1、
將上面的 office deployment tool 安裝在 D:/Tool 下。(文件夾自己建)
2、
重命名並打開配置文件configuration.xml
(這里原來貌似叫做configuration-office356-64x.xml,可以把其它兩個配置文件刪除,留下這64位操作系統的配置文件並改名字)
3、 由於我只需要裝 word/excel/ppt/visio,所以對配置文件做了修改:
這里我改了三處:
-
-
- 首先是語言,由英文改成中文("zh-cn" ),具體如下:
-
1 <Product ID="VisioProRetail"> 2 <Language ID="zh-cn" /> 3 </Product> 4 <Product ID="proplusretail"> 5 <Language ID="zh-cn" /> 6 </Product>
-
-
- 其次是在下面的代碼插入所示的地方排除掉你不要的軟件,比如 Access,OneNote 和 Outlook 等。
-
1 <Product ID="proplusretail"> 2 <Language ID="zh-cn" /> 3 4 //在此處插入 5 6 </Product>
具體操作如下:
1 <Product ID="proplusretail"> 2 <Language ID="zh-cn" /> 3 4 //在此處插入 5 <ExcludeApp ID="Access" /> 6 <ExcludeApp ID="Publisher" /> 7 <ExcludeApp ID="Groove" /> 8 <ExcludeApp ID="OneNote" /> 9 <ExcludeApp ID="InfoPath" /> 10 <ExcludeApp ID="Lync" /> 11 <ExcludeApp ID="Outlook" /> 12 <ExcludeApp ID="SharePointDesigner" /> 13 14 </Product>
最終文件成形如下:
1 <!-- Office 365 client configuration file sample. To be used for Office 365 ProPlus apps, 2 Office 365 Business apps, Project Pro for Office 365 and Visio Pro for Office 365. 3 4 For detailed information regarding configuration options visit: http://aka.ms/ODT. 5 To use the configuration file be sure to remove the comments 6 7 The following sample allows you to download and install the 64 bit version of the Office 365 ProPlus apps 8 and Visio Pro for Office 365 directly from the Office CDN using the Monthly Channel 9 settings --> 10 11 <Configuration> 12 13 <Add OfficeClientEdition="64" Channel="Monthly"> 14 <Product ID="VisioProRetail"> 15 <Language ID="zh-cn" /> 16 </Product> 17 <Product ID="proplusretail"> 18 <Language ID="zh-cn" /> 19 <ExcludeApp ID="Access" /> 20 <ExcludeApp ID="Publisher" /> 21 <ExcludeApp ID="Groove" /> 22 <ExcludeApp ID="OneNote" /> 23 <ExcludeApp ID="InfoPath" /> 24 <ExcludeApp ID="Lync" /> 25 <ExcludeApp ID="Outlook" /> 26 <ExcludeApp ID="SharePointDesigner" /> 27 </Product> 28 </Add> 29 30 <!-- <Updates Enabled="TRUE" Channel="Monthly" /> --> 31 32 <!-- <Display Level="None" AcceptEULA="TRUE" /> --> 33 34 <!-- <Property Name="AUTOACTIVATE" Value="1" /> --> 35 36 </Configuration>
-
-
-
- Win+R,輸入cmd,進入D:\Tool
-
-
運行命令 setup.exe/configure configuration.xml,會出現安裝界面:
等待安裝成功即可
- 激活
激活前請先關閉各類管家軟件,負責會被阻止
解壓這個文件,得到KMSAuto Net.exe
雙擊KMSAuto Net.exe文件
點擊Activation按鈕
點擊Activate Office,等待成功即可。
就可以使用啦,如果覺得有幫助,可以點個贊。