|
尋求 已 額外添加驅動的原版 boot.wim 進行精簡的方法...
不進入桌面.. 網卡 顯卡 音驅均不需要...
在 startnet.cmd 部分 就開始調用自行撰寫的 bat 運行一些功能
使用
Dism /Mount-Wim /WimFile:D:\boot.wim /index:1 /MountDir:F:\mount
運行 7pe精簡.bat
精簡結束後
Dism /Unmount-Wim /MountDir:F:\mount /Commit
重新提取....
imagex /compress maximum /export "D:\boot0.wim" 1 "D:\my_Data\Desktop\CD\SOURCES\boot1.wim
目標:越小越好(目前目標定在 80mb
7pe精簡.bat 內容:
@echo off
del F:\mount\sources
del F:\mount\Windows\winsxs\Backup\*.*
rem 刪除多餘nls文件
del F:\mount\windows\system32\c_708.nls
del F:\mount\windows\system32\c_720.nls
del F:\mount\windows\system32\c_737.nls
del F:\mount\windows\system32\c_775.nls
del F:\mount\windows\system32\c_855.nls
del F:\mount\windows\system32\c_857.nls
del F:\mount\windows\system32\c_860.nls
del F:\mount\windows\system32\c_861.nls
del F:\mount\windows\system32\c_862.nls
del F:\mount\windows\system32\c_863.nls
del F:\mount\windows\system32\c_864.nls
del F:\mount\windows\system32\c_865.nls
del F:\mount\windows\system32\c_866.nls
del F:\mount\windows\system32\c_869.nls
del F:\mount\windows\system32\c_874.nls
del F:\mount\windows\system32\c_875.nls
del F:\mount\windows\system32\c_932.nls
del F:\mount\windows\system32\c_949.nls
del F:\mount\windows\system32\c_1026.nls
del F:\mount\windows\system32\c_1141.nls
del F:\mount\windows\system32\c_1142.nls
del F:\mount\windows\system32\c_1143.nls
del F:\mount\windows\system32\c_1144.nls
del F:\mount\windows\system32\c_1145.nls
del F:\mount\windows\system32\c_1147.nls
del F:\mount\windows\system32\c_1149.nls
del F:\mount\windows\system32\c_1251.nls
del F:\mount\windows\system32\c_1253.nls
del F:\mount\windows\system32\c_1254.nls
del F:\mount\windows\system32\c_1255.nls
del F:\mount\windows\system32\c_1256.nls
del F:\mount\windows\system32\c_1257.nls
del F:\mount\windows\system32\c_1258.nls
del F:\mount\windows\system32\c_1361.nls
del F:\mount\windows\system32\c_10000.nls
del F:\mount\windows\system32\c_10001.nls
del F:\mount\windows\system32\c_10003.nls
del F:\mount\windows\system32\c_10004.nls
del F:\mount\windows\system32\c_10005.nls
del F:\mount\windows\system32\c_10006.nls
del F:\mount\windows\system32\c_10007.nls
del F:\mount\windows\system32\c_10010.nls
del F:\mount\windows\system32\c_10017.nls
del F:\mount\windows\system32\c_10021.nls
del F:\mount\windows\system32\c_10079.nls
del F:\mount\windows\system32\c_10081.nls
del F:\mount\windows\system32\c_10082.nls
del F:\mount\windows\system32\c_20106.nls
del F:\mount\windows\system32\c_20107.nls
del F:\mount\windows\system32\c_20108.nls
del F:\mount\windows\system32\c_20273.nls
del F:\mount\windows\system32\c_20277.nls
del F:\mount\windows\system32\c_20278.nls
del F:\mount\windows\system32\c_20280.nls
del F:\mount\windows\system32\c_20284.nls
del F:\mount\windows\system32\c_20290.nls
del F:\mount\windows\system32\c_20297.nls
del F:\mount\windows\system32\c_20420.nls
del F:\mount\windows\system32\c_20423.nls
del F:\mount\windows\system32\c_20424.nls
del F:\mount\windows\system32\c_20833.nls
del F:\mount\windows\system32\c_20838.nls
del F:\mount\windows\system32\c_20866.nls
del F:\mount\windows\system32\c_20871.nls
del F:\mount\windows\system32\c_20880.nls
del F:\mount\windows\system32\c_20905.nls
del F:\mount\windows\system32\c_20949.nls
del F:\mount\windows\system32\c_21025.nls
del F:\mount\windows\system32\c_21866.nls
del F:\mount\windows\system32\c_28592.nls
del F:\mount\windows\system32\c_28594.nls
del F:\mount\windows\system32\c_28595.nls
del F:\mount\windows\system32\c_28596.nls
del F:\mount\windows\system32\c_28597.nls
rem 刪除多餘鍵盤
rename F:\mount\windows\system32\kbdus.dll usa.dll
del /q F:\mount\windows\system32\kb*.dll
rename F:\mount\windows\system32\usa.dll kbdus.dll
[ 本帖最后由 2011回忆爱情 于 2012-9-24 04:48 编辑 ] |
|