2010年11月27日

[ cmd ] 停用 Windows 2000 / XP 的 USB / Storage / Cdrom / Floppy 與 command line 寫法

Google 一下就發現源頭應該是從此篇文章來的,雖然是前輩教的方法,感恩 <(_ _)>
ezPOST: Windows 2000/XP 的 USB/CD/Floppy 禁用法

這邊做個小小整理,停用USB.reg對於正在使用中的裝置沒有影響
所以使用中的USB鍵盤、USB滑鼠、USB硬碟不會有問題,但是只要重新拔插、重新開機就會停用了
避免掉新增USB鍵盤、USB滑鼠的問題,請見禁用USB儲存裝置,也不會影響USB鍵盤、USB滑鼠的方法

所以對於控管USB裝置
大多都是使用GPO停用USB的方法
或是把電腦的USB改成唯讀.reg

語法如下
停用 Cdrom / Floppy / USB / Storage
REGEDIT4

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Flpydisk]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Usbstor]
"Start"=dword:00000004

啟用 Cdrom / Floppy / USB / Storage
REGEDIT4

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Cdrom]
"Start"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Flpydisk]
"Start"=dword:00000003
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Usbstor]
"Start"=dword:00000003

USB隨身碟、USB裝置只能讀不能寫 (USB唯讀)
REGEDIT4

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies]
"WriteProtect"=dword:00000001

USB隨身碟、USB裝置可以讀可以寫 (USB正常狀態)
REGEDIT4

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies]
"WriteProtect"=dword:00000000



新的command line方法
UsbstorBlockreg add "HKLM\SYSTEM\CurrentControlSet\Services\USBSTOR" /v Start /t REG_DWORD /d 4 /f
UsbstorOnlyreadreg add "HKLM\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies" /v WriteProtect /t REG_DWORD /d 1 /f

舊的command line方法
Usb stor Block.bat
> "%Temp%.\UsbstorBlock.reg" ECHO REGEDIT4
>>"%Temp%.\UsbstorBlock.reg" ECHO.
>>"%Temp%.\UsbstorBlock.reg" ECHO [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Usbstor]
>>"%Temp%.\UsbstorBlock.reg" ECHO.
>>"%Temp%.\UsbstorBlock.reg" ECHO "Start"=dword:00000004
>>"%Temp%.\UsbstorBlock.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.\UsbstorBlock.reg"
DEL "%Temp%.\UsbstorBlock.reg"


Usb stor Only read.bat
> "%Temp%.\UsbstorOnlyread.reg" ECHO REGEDIT4
>>"%Temp%.\UsbstorOnlyread.reg" ECHO.
>>"%Temp%.\UsbstorOnlyread.reg" ECHO [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies]
>>"%Temp%.\UsbstorOnlyread.reg" ECHO.
>>"%Temp%.\UsbstorOnlyread.reg" ECHO "WriteProtect"=dword:00000001
>>"%Temp%.\UsbstorOnlyread.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.\UsbstorOnlyread.reg"
DEL "%Temp%.\UsbstorOnlyread.reg"


其他參考文章如下
如何避免使用者連接至 USB 儲存裝置?
http://support.microsoft.com/kb/823732/zh-tw

2010年11月26日

[ cmd ] Windows XP 停用網路卡、禁止修改IP address 的方法

前輩教的方法,來源已不可考,如果有人知道出處,麻煩請告知,感恩 <(_ _)>

目前已知適用的作業系統 Windows XP

Network card Disable.bat@echo off
echo Disable...
regsvr32 netcfgx.dll /u /s
regsvr32 netshell.dll /u /s
regsvr32 netman.dll /u /s
echo
ipconfig /all
pause


Network card Enable.bat@echo off
echo Enable...
regsvr32 /S Netcfgx.dll
regsvr32 /S Netshell.dll
regsvr32 /S Netman.dll
echo
ipconfig /all
pause

[ cmd ] Simple Network Debug Tool 簡易網路除錯工具

話說這個 Simple Network Debug Tool 簡易網路除錯工具
已經躺在我電腦裡好幾年了,期間也修修改改不少

今日Google一下,最早的源頭應該是這篇 2005-05-12 的文章
WINDFLY Forum :: 觀看文章 - 網路除錯小工具
吃果子拜樹頭,感恩 <(_ _)>

目前已知適用的作業系統 Windows XP

NetDebug_cht.cmd (下載後請加上副檔名.bat)

簡易網路除錯工具 中文版 (下列cmd文字視覺上與執行上略有不同)
@echo off
set file=test.txt
echo > %file%

:Start
echo 按任意鍵繼續...
Pause>nul
echo.
echo.
echo.
echo              簡易網路除錯工具       !!!測試前請關閉電腦防火牆!!!
echo *******************************************************************************
echo   我的電腦  ---  Hub  ---  區域網路路由器  ---  中華電信路由器  ---  Internet
echo      │           │             │                                     │
echo      IP        其他電腦         LAN                                 168.95.1.1
echo      │           │             │                                     │
echo  測試 1/2/7    測試 3/7       測試 4/7                              測試 5/6/7
echo.
echo  測試:
echo         0.顯示網路卡組態設定 : 檢查電腦IP位址是否正確
echo         1.自我測試           : 檢查電腦的網路卡驅動是否正常 (127.0.0.1)
echo         2.自我測試           : 檢查電腦的網路卡IP位址
echo         3.測試其他電腦       : 檢查電腦與其他電腦的連線
echo         4.測試閘道器         : 檢查電腦與機房路由器的連線
echo         5.測試網際網路連線   : 檢查電腦與中華電信DNS的連線 (168.95.1.1)
echo         6.測試DNS名稱解析    : 檢查Google網域名稱的解析是否正常
echo         7.追蹤路由連線       : 檢查電腦與中華電信DNS哪裡斷線
echo         8.將所有測試結果存檔 : 將所有測試結果另存新檔為 %file%
echo         9.離開
echo *******************************************************************************
echo.
SET select=
SET /P select=        請選擇:
IF NOT '%select%'=='' SET Choice=%select:~0,1%
echo.
IF /I '%select%'=='0' GOTO s0
IF /I '%select%'=='1' GOTO s1
IF /I '%select%'=='2' GOTO s2
IF /I '%select%'=='3' GOTO s3
IF /I '%select%'=='4' GOTO s4
IF /I '%select%'=='5' GOTO s5
IF /I '%select%'=='6' GOTO s6
IF /I '%select%'=='7' GOTO s7
IF /I '%select%'=='8' GOTO s8
IF /I '%select%'=='9' GOTO end
echo "%select%"        !! 選擇無效,請選擇:
echo.
GOTO Start

:s0
netsh -c interface ip show config
goto Start

:s1
netsh -c diag ping loopback
goto Start

:s2
netsh -c diag ping ip
goto Start

:s3
SET NIP=
SET /P NIP=        請輸入其他電腦的IP位址:
if "%NIP%"=="" goto bStart
netsh -c diag ping iphost %NIP%
goto Start

:s4
netsh -c diag ping gateway
goto Start

:s5
netsh -c diag ping iphost 168.95.1.1
goto Start

:s6
netsh -c diag ping iphost www.google.com
goto Start

:s7
tracert 8.8.8.8
goto Start

:s8
echo 請稍候...
netsh -c interface ip show config >> %file%
netsh -c diag ping loopback >> %file%
netsh -c diag ping ip >> %file%
netsh -c diag ping gateway >> %file%
netsh -c diag ping iphost 168.95.1.1 >> %file%
netsh -c diag ping iphost www.google.com >> %file%
tracert 168.95.1.1 >> %file%
echo ok...
goto Start

:bStart
echo 請輸入其他電腦的IP位址...
goto Start

:end


NetDebug_en.cmd (下載後請加上副檔名.bat)

Simple Network Debug Tool 英文版 (下列cmd文字視覺上與執行上略有不同)
感謝友人 William 的翻譯( ̄▽ ̄)y @echo off
set file=test.txt
echo > %file%

:Start
echo Press any key to continue...
Pause>nul
echo.
echo.
echo.
echo  Simple Network Debug Tool  !!!Please turn off the firewall before the test!!!
echo *******************************************************************************
echo  The Computer --- Hub --- Local Area Router --- Hinet Router --- Internet
echo       │           │             │                                │
echo       IP        Neighbor         LAN                            168.95.1.1
echo       │           │             │                                │
echo   Test 1/2/7    Test 3/7       Test 4/7                         Test 5/6/7
echo.
echo   Test:                         
echo         0.Show Config   : Check the IP address's correctness.
echo         1.Self Test     : Check the network card's driver is normally.
echo         2.Self Test     : Check the network card's IP address.
echo         3.Neighbor Test : Check the connection with others.
echo         4.Gateway Test  : Check the connection with gateway.
echo         5.Internet Test : Check the connection with Internet. (168.95.1.1)
echo         6.DNS Test      : Check the resolve with the domain name "Google".
echo         7.Tracert Test  : Check your connection that where's it broken.
echo         8.Save All Test : Save as %file%
echo         9.Quit
echo *******************************************************************************
echo.
SET select=
SET /P select=        Please select:
IF NOT '%select%'=='' SET Choice=%select:~0,1%
echo.
IF /I '%select%'=='0' GOTO s0
IF /I '%select%'=='1' GOTO s1
IF /I '%select%'=='2' GOTO s2
IF /I '%select%'=='3' GOTO s3
IF /I '%select%'=='4' GOTO s4
IF /I '%select%'=='5' GOTO s5
IF /I '%select%'=='6' GOTO s6
IF /I '%select%'=='7' GOTO s7
IF /I '%select%'=='8' GOTO s8
IF /I '%select%'=='9' GOTO end
echo "%select%"        !! Select invalid, please select:
echo.
GOTO Start

:s0
netsh -c interface ip show config
goto Start

:s1
netsh -c diag ping loopback
goto Start

:s2
netsh -c diag ping ip
goto Start

:s3
SET NIP=
SET /P NIP=        Enter Neighbor's IP address:
if "%NIP%"=="" goto bStart
netsh -c diag ping iphost %NIP%
goto Start

:s4
netsh -c diag ping gateway
goto Start

:s5
netsh -c diag ping iphost 168.95.1.1
goto Start

:s6
netsh -c diag ping iphost www.google.com
goto Start

:s7
tracert 168.95.1.1
goto Start

:s8
echo Please wait...
netsh -c interface ip show config >> %file%
netsh -c diag ping loopback >> %file%
netsh -c diag ping ip >> %file%
netsh -c diag ping gateway >> %file%
netsh -c diag ping iphost 168.95.1.1 >> %file%
netsh -c diag ping iphost www.google.com >> %file%
tracert 168.95.1.1 >> %file%
echo ok...
goto Start

:bStart
echo Enter Neighbor's IP address...
goto Start

:end

2010年11月23日

[ Sysinternals ] Autoruns - 比 msconfig 完整好用的 Windows 啟動管理程式

Autoruns - 比 msconfig 完整好用的 Windows 啟動管理程式
版本 10.04 / 2010.10.06
官網 live.Sysinternals.com ( 於2006年7月18日被微軟收購 )
說明 Download Autoruns.zip 直接下載 autoruns.exe
性質 freeware/en/Windows (WinXP to Win7)
autoruns.exe 大小 713 KB
autorunsc.exe 大小 581 KB
autoruns.exe MD5 738963EB93A402DD8EEA0B077F1A2965
autorunsc.exe MD5 431B6CC0D2F7383C38023C4B409522DA

一般來說,想要修改開機自動啟用的應用程式或是服務
都會使用 msconfig 系統設定公用程式 (System Configuration Utility) 來做修改

但是很多東西沒有那麼容易辨識,也不夠詳細
這時候就需要 Sysinternals 出版的 Autoruns 來做調整
有圖示、有 Description 描述說明、有 Publishers 出版商,是不是一目了然啊 ^^


話不多說,馬上就來Download Autoruns.zip
下載解壓縮後會看到四個文件 autoruns.chm autoruns.exe autorunsc.exe Eula.txt

autoruns.chm內容滿詳細的,如下所示Logon This entry results in scans of standard autostart locations such as the Startup folder for the current user and all users, the Run Registry keys, and standard application launch locations.

Explorer Select this entry to see Explorer shell extensions, browser helper objects, explorer toolbars, active setup executions, and shell execute hooks.
IE 瀏覽器
Internet Explorer This entry shows Browser Helper Objects (BHO's), Internet Explorer toolbars and extensions.
系統服務
Services All Windows services configured to start automatically when the system boots.
驅動程式
Drivers This displays all kernel-mode drivers registered on the system except those that are disabled.
工作排程
Scheduled Tasks Task scheduler tasks configured to start at boot or logon.
初始化應用程式
AppInit DLLs This has Autoruns shows DLLs registered as application initialization DLLs.
開機執行
Boot Execute Native images (as opposed to Windows images) that run early during the boot process.
影像攔截
Image Hijacks Image file execution options and command prompt autostarts.
已知DLLs
Known DLLs This reports the location of DLLs that Windows loads into applications that reference them.
系統登入
Winlogon Notifications Shows DLLs that register for Winlogon notification of logon events.
Winsock 提供者
Winsock Providers Shows registered Winsock protocols, including Winsock service providers. Malware often installs itself as a Winsock service provider because there are few tools that can remove them. Autoruns can uninstall them, but cannot disable them.
LSA 提供者
LSA Providers Shows registers Local Security Authority (LSA) authentication, notification and security packages.
列印監視器啟動
Printer Monitor Drivers Displays DLLs that load into the print spooling service. Malware has used this support to autostart itself.
補充工具欄
Sidebar Displays Windows Vista sidebar gadgets


autoruns.exe 就是重點啦( ̄▽ ̄)/
第一次執行請按 Agree


執行後會發現有很多可以調整的,剛剛的說明檔都有寫了


這時候就要看功力了,自行判斷哪些不需要的,把勾勾去掉或是 Delete 掉

尤其是 IE 已經夠肥,還有一堆外掛在上面,不過修改後請自行對系統的影響負責 ( ̄﹏ ̄)
真的不知道可以選擇 verify 驗證,verifed 表示驗證無誤,not verifed 表示沒有數位簽章
Jump to ... 則是可以跳到相關的登錄值
或是 Search Online 馬上 Google 搜尋看看是不是可疑的東東

user 是我最喜歡的功能之一了,可以馬上切換不同身分,修改就方便多了( ̄▽ ̄)y


autorunsc.exe 適用於 command line,參數如下Sysinternals Autoruns v10.02 - Autostart program viewer
Copyright (C) 2002-2010 Mark Russinovich and Bryce Cogswell
Sysinternals - www.sysinternals.com

Autorunsc shows programs configured to autostart during boot.

Usage: autorunsc [-x] [[-a] | [-b] [-c] [-d] [-e] [-g] [-h] [-i] [-k] [-l] [-m]
[-o] [-p] [-r] [-s] [-v] [-w] [[-z <systemroot> <userprofile>] | [user]]]
-a 顯示所有項目 Show all entries.
-b 開機執行 Boot execute.
-c 列印輸出成 CSV 檔 Print output as CSV.
-d 檔案總管增益集 Appinit DLLs.
-e 系統附加元件 Explorer addons.
-g 資訊看板小工具 Sidebar gadgets (Vista and higher)
-h 影像攔截 Image hijacks.
-i IE 附加元件 Internet Explorer addons.
-k 已知DLL函式庫 Known DLLs.
-l 登入啟動 Logon startups (this is the default).
-m 隱藏已簽署的 Microsoft 項目 Hide Microsoft entries (signed entries if used with -v).
-n Winsock 通訊協定與網路提供者 Winsock protocol and network providers.
-o 解碼器 Codecs.
-p 印表機監視器驅動程式 Printer monitor DLLs.
-r LSA 提供者 LSA security providers.
-s 自動啟動服務和非停用的驅動程式 Autostart services and non-disabled drivers.
-t 排定的工作 Scheduled tasks.
-v 確認數位簽章 Verify digital signatures.
-w Winlogon 項目 Winlogon entries.
-x 列印輸出成 XML檔 Print output as XML.
-z 指定 Windows 離線掃描 Specifies the offline Windows system to scan.
user 指定顯示使用者帳戶名稱的自動執行項目。 Specifies the name of the user account for which autorun items will be shown.


Eula.txt 顧名思義,就是終端使用者許可協定文件

呼...打完收工 v( ̄w ̄)v

2010年11月7日

[測試] CD DVD 空白片燒錄品質檢測 自行記錄用 - Nero DiscSpeed

本篇為自行記錄用
圖片訊息僅供參考
不代表專業分析立場
ASUS DRW-24B3ST 1.0 RiDATA DVD-RW x16





ASUS_DRW-24B3ST RiDATA cdr





LITE-ON iHAS324 Y -RiTEK cdr 綠葉子





LITE-ON iHAS324 Y - Ritek













SONY DEU-830A SS25 - MITASUBISHI GOLD








SONY DEU-830A SS25 - Ritek






SONY DEU-830A SS25 - SonyDVD-R





燒錄器: ATAPI iHAS324 Y
光碟片種類: : DVD-R
規格書的種類 : DVD-R
製造廠商: : CMC
MID : CMC MAG. AM3
空片容量 : 4.38 GB : 4488 MB : 4706074624 位元組



2010年11月6日

[光碟與燒錄] Nero DiscSpeed - 檢測 CD DVD 空白片燒錄品質免費軟體

版本 Nero DiscSpeed 5.4.24.0
官網 Nero 繁體中文
說明 Download 最新版本直接下載1 最新版本直接下載2
性質 freeware/Windows(WinXP to Win7)
大小 2.54 MB
MD5 5823F83A2E10ABCDE3C8E94FC5473162
簡單的說,就是測試光碟品質的啦
不過數據還是僅供參考,用得爽最重要 ( ̄▽ ̄)/


版本 InfoTool 2000 / 2.0.0.0
官網 Nero 繁體中文
性質 freeware/多國/Windows(WinXP to Win7)
大小 165 KB




版本 InfoTool 5.3.3.0
官網 Nero 繁體中文
說明 Download 最新版本直接下載1 最新版本直接下載2
性質 freeware/Windows(WinXP to Win7)
大小 1.65 MB
MD5 38A9293F6D1BC86FD7A3D2A0B6BDA538
可以檢視光碟機訊息工具
燒錄機的 Firmware Version 韌體版本、Buffer Size 緩衝區大小、
Serial Number 序號、Read Speed 讀取速度、Write Speed 燒錄速度、
DVD Region Code 區碼 ...... 全部一覽無遺 ( ̄▽ ̄)/

2010年11月5日

[資訊安全] 刪除 Firefox 上討厭的 WPF 之 Microsoft .NET Framework Assistant 小幫手 0.0.0

延續之前 刪除 Firefox 上討厭的 Windows Presentation Foundation 與 Microsoft R DRM
在更新完 NDP35SP1-KB963707 ,Firefox 的擴充套件中又出現 M$ 外掛 ("︶︿︶)

只是和以前有些不同,如同官方所說的.NET Framework 3.5 SP1 中,.NET Framework Assistant 能夠使 Firefox 運用 .NET Framework 中所提供的 ClickOnce 技術。電腦上會新增 .NET Framework Assistant,讓所有使用者都能使用其中的功能。因此,由於不允許標準使用者解除安裝電腦層級的元件,因此無法使用 Firefox [附加元件] 清單中原本顯示的 [解除安裝] 按鈕。在 .NET Framework 3.5 SP1 和 Windows 7 更新中,會針對個別使用者安裝 .NET Framework Assistant。因此,Firefox [附加元件] 清單中的 [解除安裝] 按鈕即可正常使用。此外,此項更新也能夠使 .NET Framework Assistant for Firefox 版本與未來的 Firefox 瀏覽器版本相容。若要順利更新 .NET Framework Assistant,必須在 Firefox 啟用擴充功能的情況下套用此更新。若要補救在停用擴充功能的情況下安裝此更新的結果,請解除安裝更新,重新啟用擴充功能,然後再重新安裝更新。.NET Framework Assistant 的更新可能含有 Firefox 專用的 Windows Presentation Foundation 外掛程式,因此會導致在初始更新時啟用該外掛程式。
說這麼多,我就是不想要讓 Microsoft .NET Framework Assistant 0.0.0出現在 Firefox 裡面 ......
只要更新了 NDP35SP1-KB963707 ,就會出現如下圖的 Extension

如果用以前的方法,刪除 DotNetAssistantExtension 資料夾後,
又會要你更新 NDP35SP1-KB963707,掉入無線循環...囧...


所以綜合以上資訊,簡化後,最簡單的步驟為
1. 下載並執行 unWPF_x86.reg(適用於32位元作業系統)unWPF_x64.reg(for 64bit, 未測試)
2. 開啟 Firefox 並在網址列輸入 about:config
3. 於上方篩選條件列輸入 general.useragent.extra.microsoftdotnet 即可快速找到
4. 於 general.useragent.extra.microsoftdotnet 上按滑鼠右鍵並選擇重設,並重啟 firefox
5. 這樣 firefox 的WPF擴充套件就成功移除了 ^_^


補充:使用 command line 刪除登錄檔的方法如下
for x86reg DELETE /"HKLM\SOFTWARE\Mozilla\Firefox\Extensions"v"{20a82645-c095-46ed-80e3-08825760534b}"/ ffor x64reg DELETE HKLM\SOFTWARE\Wow6432Node\Mozilla\Firefox\Extensions"/ v"{20a82645-c095-46ed-80e3-08825760534b}"/ f資料來源:
Remove the Microsoft .NET Framework Assistant (ClickOnce) Firefox Extension
如何移除 Firefox 對於.NET Framework 小幫手

Microsoft .NET Framework 3.5 SP1 完全離線自動安裝法

Microsoft .NET Framework 3.5 SP1 完全離線自動安裝法
相信有安裝.net framework 經驗的朋友,最討厭的就是遇到正在重建伺服器的連接...

有時候裝完都過了 20-30分鐘以上~"~
雖然可以用拔掉網路線、停用網路卡等方法來辦到
但是情況不允許的時候,就可以用 bat 批次處理來解決
不熟的人不要輕易嘗試,後果自行負責( ̄﹏ ̄)/


dotnetfx35_cht_hotfix.bat批次檔 (下載後請加上副檔名.bat)
.Net Framework 3.5 SP1 系列檔案 (共五個)
放置於同一目錄中,並執行 dotnetfx35_cht_hotfix.bat 即可

dotnetfx35_cht_hotfix.bat 內容如下,參數見圖
@echo off
title 開始自動安裝 Microsoft.NET Framework 3.5 SP1 ...
echo 所有版本安裝之前,請必須先看過硬體需求、系統需求、等相關訊息。
echo 並且強烈建議安裝時關閉所有其他應用程式。
echo 按任意鍵繼續安裝,如果要離開請按 Ctrl+C
pause
echo 正在安裝 Microsoft .NET Framework 3.5 SP1 請耐心等候 ...
dotnetfx35.exe /x:dotnetfx35temp /q
cd dotnetfx35temp/wcu/dotNetFramework
dotnetfx35setup.exe /lang:ENU /qb /norestart
cd..
cd..
cd..
echo 正在安裝 .NET Framework 3.5 SP1 相容性更新 ...
NDP20SP2-KB958481-x86.exe /q /norestart
NDP30SP2-KB958483-x86.exe /q /norestart
NDP35SP1-KB958484-x86.exe /q /norestart
echo 正在安裝 .NET Framework 3.5 SP1 語言套件 - 繁體中文 ...
dotnetfx35langpack_x86zh-cht.exe /qb /norestart
rd dotnetfx35temp /s /q
echo 安裝完成,10秒後本視窗自動關閉。
echo 請手動重新啟動作業系統,避免系統出現問題。
@ping 127.0.0.1 -n 10 -w 100 > nul




安裝完... 滿肥的 ( ̄﹏ ̄)




資料來源
.NET Framework 3.5 系統管理員部署手冊
http://msdn.microsoft.com/zh-tw/library/cc160717.aspx

突然發現...
現在做的事...
很多前輩都做過了...

2010年11月3日

[ Microsoft ] .Net Framework 微軟官方下載點收集

因為繁體中文版的 .Net Framework 官方網站下載點有點亂,只好自己手動紀錄ψ(._. )>
最新的放在前面,直接下載都是 Standalone 獨立完整的離線安裝版,不需要線上安裝

注意:所有版本安裝之前,請必須先看過硬體需求、系統需求、支援的作業系統、已知問題、一般問題、等相關訊息。 
並且強烈建議安裝時關閉所有其他應用程式,以及安裝後重新啟動作業系統,避免系統出現問題。


Microsoft .NET Framework 4
版本 4.0.30319.1 / 2010.04.12
官網說明 readme 讀我檔案 Standalone Installer 獨立安裝程式
直接下載 Download dotNetFx40_Full_x86_x64.exe
支援 Windows XP Service Pack 3 / Windows 7 / Windows Server 2003 SP2 ...
大小 48.1 MB
MD5 251743DFD3FDA414570524BAC9E55381

Microsoft .NET Framework 4 Client Profile 獨立安裝程式
版本 4.0.30319.1 / 2010.04.12
官網說明 readme 讀我檔案  Standalone Installer 獨立安裝程式
直接下載 Download dotNetFx40_Client_x86_x64.exe
支援 Windows XP Service Pack 3 / Windows 7 / Windows Server 2003 SP2 ...
大小 41.0 MB
MD5 1CF262F35322D6C9C7A27FCA513FC269

Microsoft .NET Framework 4 Full 語言套件 (x86/x64)
版本 4.0.30319.1 / 2010.06.01
官網說明 繁體中文 Full Language Pack
直接下載 Download dotNetFx40LP_Full_x86_x64zh-Hant.exe
支援 Windows XP Service Pack 3 / Windows 7 / Windows Server 2003 SP2 ...
大小 2.97 MB
MD5 C0A621C1660A01E9C6CF7F5003A09737

Windows 7 已經內建 .net framework 3.5.1,但是目前有三個安全性更新需要安裝

Windows 7 和 Windows Server 2008 R2 的 Microsoft .NET Framework 3.5.1 安全性更新
安全佈告欄:MS10-041
Knowledge Base (KB) Article:KB979916
發佈日期:2010/6/1


安全佈告欄:MS10-060
Knowledge Base (KB) Article:KB983590
發佈日期:2010/8/10


安全佈告欄:MS10-070
Knowledge Base (KB) Article:KB2416471
發佈日期:2010/9/27



Microsoft .NET Framework 3.5 Service pack 1 (Full Package)
版本 3.5.30729.1 / 2008.12.17
官網說明 readme 讀我檔案 Standalone Installer 獨立安裝程式
直接下載 Download dotnetfx35.exe
支援 Windows XP / Windows Server 2003 / Windows Server 2008 ...
大小 231 MB
MD5 D481CDA2625D9DD2731A00F482484D86

Microsoft .NET Framework 3.5 SP1 語言套件 - 繁體中文
版本 3.5.30729.1 / 2008.08.11
官網說明 繁體中文 Language Pack 
直接下載 Download dotnetfx35langpack_x86zh-cht.exe
支援 Windows XP / Windows Server 2003 / Windows Server 2008 ...
大小 27.3 MB
MD5 F18277EEF2352FB2DFD6CB573B60C43C

Windows XP x86 和 Windows Server 2003 x86 的 Microsoft .NET Framework 3.5 系列更新
安裝這個更新以解決與 Microsoft .NET Framework 3.5 Service Pack 1 在應用程式相容性方面的已知問題。
版本 3.5 / 2008.12.17
說明 繁體中文 English
支援 Windows XP / Windows Server 2003 ...
直接下載 Download
所有三項更新。這些更新必須依下列順序進行安裝:
NDP20SP2-KB958481-x86.exe 8.6 MB CCD59228523CC8720452625FE04EE14A
NDP30SP2-KB958483-x86.exe 6.9 MB 8763A1DB271BB6B48A40A916AAE39C41
NDP35SP1-KB958484-x86.exe 1.4 MB 29897BCA425F61F7E037F421DFAF48C9

用command line寫成bat批次檔安裝.NET Framework 3.5的方法請見下面這篇
Microsoft .NET Framework 3.5 SP1 完全離線自動安裝法


Microsoft .NET Framework 1.1 版依下列順序進行安裝:
Microsoft .NET Framework 1.1 版可轉散發套件
Download dotnetfx.exe
00362dbe3c68c0c7e6c75c8c57e2e38e
Microsoft .NET Framework 1.1 版繁體中文語言套件
Download langpack.exe
d64a6a36df09dc53d08c832a0bf1fa01
Microsoft .NET Framework 1.1 Service Pack 1
Download NDP1.1sp1-KB867460-X86.exe
22e38a8a7d90c088064a0bbc882a69e5
Microsoft .NET Framework 1.1 Service Pack 1 ASP.NET 安全性更新
Download NDP1.1sp1-KB886903-X86.exe
073c735e36f2f0f584fe8236ae6204b5