2012年2月8日 星期三

Windows 8安裝.Net 3.5的方法

☆Windows 8 version 8102:
1. 先將Windows 8光碟片放入光碟機中。
2. 使用管理員權限開啟命令提示字元。
3. 輸入以下指令:
    dism.exe /online /enable-feature /featurename:NetFX3 /Source:d:\sources\sxs
    (d: = 光碟機位置代號)
4.等待程序執行完畢即安裝完成。

☆Windows 8 version 8x20
1.先將Windows 8 光碟片放入光碟機中。
2.使用管理員權限開啟命令提示字元。
3.輸入以下指令:
   xcopy d:\sources\sxs\*.* c:\net35 /s
    (d: = 光碟機位置代號;net35的名稱可任意調整,但需與下段指令位置相符)
   Dism.exe /online /enable-feature /featurename:NetFX3 /All /Source:c:\net35 /LimitAccess
4.等待程序執行完畢即安裝完成。