有關 Windows 7 RTM 的一些超連結

 LJI 

初級會員
已加入
1/17/07
訊息
45
互動分數
0
點數
0
只等您的作品喔^^

我其它的已經幾乎都不下了...
我也還在下載,不過速度真恐怖,開三個檔案就把我頻寬吃完了
(光世代10M/2M,全速下載1.11M)
 

熱鬥小狐

高級會員
已加入
5/13/05
訊息
754
互動分數
0
點數
0
趁現在有時間,把在微剋多討論的成果貼出來
我把副檔名改成CMD並加入迴圈指令,這樣內容比較短,也可以保證每一行執行完畢才會執行下一行

x86.cmd
FOR /L %%a IN (5,-1,1) DO (DISM /Mount-Wim /WimFile:C:\Win7RTM\Image\x86\sources\install.wim /Index:%%a /MountDir:C:\Win7RTM\WIM
DISM /Image:C:\Win7RTM\WIM /Apply-Unattend:"C:\Win7RTM\remove_x86.xml"
DISM /Image:C:\Win7RTM\WIM /Add-Package /PackagePath:"C:\Win7RTM\LanguagePack\x86"
DISM /Image:C:\Win7RTM\WIM /Add-Package /PackagePath:"C:\Win7RTM\LocalPack\x86"
DISM /Commit-Wim /MountDir:C:\Win7RTM\WIM

DISM /Image:C:\Win7RTM\WIM /set-uilang:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-syslocale:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-userlocale:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-inputlocale:0404:00000404
DISM /Image:C:\Win7RTM\WIM /set-allintl:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-timezone:"Taipei Standard Time"
DISM /Image:C:\Win7RTM\WIM /gen-langini /distribution:C:\Win7RTM\Image\x86
DISM /Image:C:\Win7RTM\WIM /set-setupuilang:zh-tw /distribution:C:\Win7RTM\Image\x86
DISM /Unmount-Wim /MountDir:C:\Win7RTM\WIM /commit)

DISM /Mount-Wim /WimFile:C:\Win7RTM\Image\x86\sources\boot.wim /Index:2 /MountDir:C:\Win7RTM\WIM
xcopy Image\x86\sources\lang.ini WIM\sources\ /cheryki
DISM /Image:C:\Win7RTM\WIM /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\x86\WinPE_FPs\winpe-fontsupport-zh-tw.cab"
mkdir WIM\sources\zh-TW
xcopy LanguagePack\x86\setup\sources\zh-TW\*.* WIM\sources\zh-TW /cheryki
xcopy LanguagePack\x86\sources\license\*.* WIM\sources\license /cheryki
DISM /Unmount-Wim /MountDir:C:\Win7RTM\WIM /commit

oscdimg -u1 -h -o -b.\Image\x86\boot\etfsboot.com -l"GRMCULFRER_TW_DVD" ".\Image\x86" "7600.16385.090713-1255_x86fre_client_zh-tw_Retail_Ultimate-GRMCULFRER_TW_DVD.iso"

x64.cmd
FOR /L %%a IN (5,-1,1) DO (DISM /Mount-Wim /WimFile:C:\Win7RTM\Image\x64\sources\install.wim /Index:%%a /MountDir:C:\Win7RTM\WIM
DISM /Image:C:\Win7RTM\WIM /Apply-Unattend:"C:\Win7RTM\remove_x64.xml"
DISM /Image:C:\Win7RTM\WIM /Add-Package /PackagePath:"C:\Win7RTM\LanguagePack\x64"
DISM /Image:C:\Win7RTM\WIM /Add-Package /PackagePath:"C:\Win7RTM\LocalPack\x64"
DISM /Commit-Wim /MountDir:C:\Win7RTM\WIM

DISM /Image:C:\Win7RTM\WIM /set-uilang:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-syslocale:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-userlocale:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-inputlocale:0404:00000404
DISM /Image:C:\Win7RTM\WIM /set-allintl:zh-tw
DISM /Image:C:\Win7RTM\WIM /set-timezone:"Taipei Standard Time"
DISM /Image:C:\Win7RTM\WIM /gen-langini /distribution:C:\Win7RTM\Image\x64
DISM /Image:C:\Win7RTM\WIM /set-setupuilang:zh-tw /distribution:C:\Win7RTM\Image\x64
DISM /Unmount-Wim /MountDir:C:\Win7RTM\WIM /commit)

DISM /Mount-Wim /WimFile:C:\Win7RTM\Image\x64\sources\boot.wim /Index:2 /MountDir:C:\Win7RTM\WIM
xcopy Image\x64\sources\lang.ini WIM\sources\ /cheryki
DISM /Image:C:\Win7RTM\WIM /Add-Package /PackagePath:"C:\Program Files\Windows AIK\Tools\PETools\amd64\WinPE_FPs\winpe-fontsupport-zh-tw.cab"
mkdir WIM\sources\zh-TW
xcopy LanguagePack\x64\setup\sources\zh-TW\*.* WIM\sources\zh-TW /cheryki
xcopy LanguagePack\x64\sources\license\*.* WIM\sources\license /cheryki
DISM /Unmount-Wim /MountDir:C:\Win7RTM\WIM /commit

oscdimg -u1 -h -o -b.\Image\x64\boot\etfsboot.com -l"GRMCULXFRER_TW_DVD" ".\Image\x64" "7600.16385.090713-1255_x64fre_client_zh-tw_Retail_Ultimate-GRMCULXFRER_TW_DVD.iso"

另外2in1也改成這樣子:
robocopy Image\x86 Image\2in1 /E /XF file Image\x86\sources\install.wim /XF file Image\x86\sources\*.clg

imagex /export .\Image\x86\sources\install.wim 5 .\Image\2in1\sources\install.wim "Windows 7 ULTIMATE x86"
imagex /export .\Image\x64\sources\install.wim 4 .\Image\2in1\sources\install.wim "Windows 7 ULTIMATE x64"
oscdimg -u1 -h -o -b.\Image\x86\boot\etfsboot.com -l"WIN7_RTM_2in1" ".\Image\2in1" "WIN7_RTM_2in1.iso"

這樣就不會把多餘的檔案覆製過去,而不需要使用del指令了
 

熱鬥小狐

高級會員
已加入
5/13/05
訊息
754
互動分數
0
點數
0
另外,若想連選單都自行製作的話,以x86作例子,可以把批次檔的最後一行換成這樣:
robocopy Image\x86 Image\iso /E /XF file Image\x86\sources\install.wim /XF file Image\x86\sources\*.clg
imagex /export .\Image\x86\sources\install.wim 5 .\Image\iso\sources\install.wim "Windows 7 Ultimate x86"
imagex /export .\Image\x86\sources\install.wim 4 .\Image\iso\sources\install.wim "Windows 7 Professional x86"
imagex /export .\Image\x86\sources\install.wim 3 .\Image\iso\sources\install.wim "Windows 7 Home Premium x86"
imagex /export .\Image\x86\sources\install.wim 2 .\Image\iso\sources\install.wim "Windows 7 Home Basic x86"
imagex /export .\Image\x86\sources\install.wim 1 .\Image\iso\sources\install.wim "Windows 7 Starter x86"
oscdimg -u1 -h -o -b.\Image\iso\boot\etfsboot.com -l"GRMCULFRER_TW_DVD" ".\Image\iso" "7600.16385.090713-1255_x86fre_client_zh-tw_Retail_Ultimate-GRMCULFRER_TW_DVD.iso"
Del \Image\iso\*.*
當然裡面提及的iso 資料夾是要你自已預先製作了
 

co1280

初級會員
已加入
5/3/09
訊息
34
互動分數
0
點數
0
有關 Windows 7 RTM 的一些超連結:

Windows 7 RTM 英文ISO 的 BT檔(6.1.7600.16385)
x86
x64
感謝樓主的連結及整合教學。:MMM:

樓主的連結與今天(8/7)凌晨一點MSDN發佈的RTM其SHA1完全一樣。 (就是所謂 leak 版)

但此二連結已失效,故幫樓主補上目前最多Seeds的連結。 (轉發的人不同但種子相同)

Search results for 7600 - Mininova

7600 16385 090713-1255 x86fre client en-us Retail Ultimate-GRMCULFRER EN DVD[raj1402]

7600 16385 090713-1255 x64fre client en-us Retail Ultimate-GRMCULXFRER EN DVD-raj1402



7600 16385 090713-1255 x86fre client en-us Retail Ultimate-GRMCULFRER EN DVD[raj1402]

Total size: 2.33 gigabyte
Added: 7 days ago by raj1402
Language: English
Share ratio: 1042 seeds, 769 leechers
Last updated: 8 hours ago
Downloads: 1,495

Description:
MICROSOFT.WINDOWS.7.ULTIMATE.RTM.X86.RETAIL.ENGLISH.DVD-[raj1402]
BUILD: 7600.16385.090713-1255
7600.16385.090713-1255_x86fre_client_en-us_Retail_Ultimate-GRMCULFRER_EN_DVD.iso
SIZE: 2,501,894,144 byte
SHA1: 5395DC4B38F7BDB1E005FF414DEEDFDB16DBF610
MD5: D0B8B407E8A3D4B75EE9C10147266B89
CRC: C1C20F76
NOTE: this original M$ image.



7600 16385 090713-1255 x64fre client en-us Retail Ultimate-GRMCULXFRER EN DVD-raj1402

Total size: 3 gigabyte
Added: 7 days ago by raj1402
Language: English
Share ratio: 530 seeds, 440 leechers
Last updated: 8 hours ago
Downloads: 956

Description:
MICROSOFT.WINDOWS.7.ULTIMATE.RTM.X64.RETAIL.ENGLISH.DVD-raj1402
BUILD: 7600.16385.090713-1255
7600.16385.090713-1255_x64fre_client_en-us_Retail_Ultimate-GRMCULXFRER_EN_DVD.iso
SIZE: 3,224,686,592 byte
SHA1: 326327CC2FF9F05379F5058C41BE6BC5E004BAA7
MD5: F43D22E4FB07BF617D573ACD8785C028
CRC: 1F1257CA
NOTE: this original M$ image.
 
最後編輯:
▌延伸閱讀