无忧启动论坛

标题: 菜鸟来了---让大家都会制作干净的WIN7PE系统-Win7PE文件自动拷贝批处理及注册表文件 [打印本页]

作者: 2010khmsoft    时间: 2012-11-7 09:20
标题: 菜鸟来了---让大家都会制作干净的WIN7PE系统-Win7PE文件自动拷贝批处理及注册表文件
菜鸟来了---让大家都会制作干净的WIN7PE系统-Win7PE文件自动拷贝批处理:

借用无忧宝地一用,我是菜鸟,菜鸟就用菜鸟的方法:拷贝所有WIN7PE支持的文件,替换config目录批处理文件,加载制作的PECMD程序包。

建议将imagex.exe文件拷贝到当前系统\Windows\system32中,如果不想拷贝,也可将imagex.exe文件与运行的批处理文件放到同一目录中。

Explorer注册表文件下载:

Explorer注册表文件下载地址.zip (266 Bytes, 下载次数: 272)




1、导出BOOT.WIM启动文件的第二索引到一目录

export.cmd批处理内容:

@echo off
PUSHD %~dp0
md oemwim
::dism /image:.\boot /Set-ScratchSpace:512
::imagex /capture .\boot .\WIN7PE.wim "Microsoft Windows7 PE (x86)" /verify /boot
imagex /export .\boot.wim 2 .\oemwim\boot.wim /boot
imagex /info .\oemwim\boot.wim 1 "Microsoft Windows7 PE (x86)" "Microsoft Windows7 PE (x86)"
@echo  按任意键退出
pause >nul


2、挂载BOOT.WIM镜像到一目录:

boot.cmd批处理文件内容:

Title boot.wim集成OEM工具--告别繁琐的命令--管理员权限运行我! 制作人:KHMSOFT(我本疯狂)
@echo off
cls
color 9f
@echo.
@echo.
@echo.
@echo                              管理员权限运行"我"呀!                        
@echo.
@echo.
@echo 运行本批处理文件前,请将$boot.wim目录拷贝到此批处理文件所在的目录
@echo --------------------------------------------------------------------
@echo.
@echo --------------------------------------------------------------------
@echo.
@echo.
@echo  -------------------------建立挂载的目录---------------------------

PUSHD %~dp0
@echo.
md boot
md Win7PE
DISM.exe /Get-WIMInfo /WimFile:.\boot.wim
@echo.
SET /P drive_letter=   请输入你要选择的挂载boot.wim镜像卷(1/2/3/4/5...)
@echo  -------------------------挂载boot.wim镜像卷到mount--------------
DISM.exe /Get-WIMInfo /WimFile:.\boot.wim /index:%drive_letter%
pause >nul
DISM.exe /mount-wim /wimfile:.\boot.wim /index:%drive_letter% /mountdir:.\boot

@echo  -------------------------暂停一下,编辑完成后再卸载,按任意键继续-------
pause >nul
@echo 修改暂存空间 命令:默认WINPE只会分配32M暂存内存
dism /image:.\boot /Set-ScratchSpace:512
@echo  -------------------------保存镜像并卸载----------------------------
DISM.exe /unmount-wim /commit /mountdir:.\boot

3、挂载INSTALL.WIM镜像到一目录:

install.cmd批处理文件内容:


Title install.wim集成OEM工具--告别繁琐的命令--管理员权限运行我! 制作人:KHMSOFT(我本疯狂)
@echo off
cls
color 9f
@echo.
@echo.
@echo.
@echo                              管理员权限运行"我"呀!                        
@echo.
@echo.
@echo 运行本批处理文件前,请将install.wim目录拷贝到此批处理文件所在的目录
@echo --------------------------------------------------------------------
@echo.  
@echo --------------------------------------------------------------------
@echo.
@echo.
@echo  -------------------------建立挂载的目录---------------------------

PUSHD %~dp0
@echo.
md Mount
DISM.exe /Get-WIMInfo /WimFile:.\install.wim
@echo.
SET /P drive_letter=   请输入你要选择的挂载boot.wim镜像卷(1/2/3/4/5...)
DISM.exe /Get-WIMInfo /WimFile:.\install.wim /index:%drive_letter%
pause >nul
@echo  -------------------------挂载boot.wim镜像卷到mount--------------
DISM.exe /mount-wim /wimfile:.\install.wim /index:%drive_letter% /mountdir:.\Mount

@echo  -------------------------暂停一下,查看后再卸载,按任意键继续-------
pause >nul
@echo  -------------------------保存镜像并卸载----------------------------
DISM.exe /unmount-wim /commit /mountdir:.\Mount
@echo  -------------------------删除mount目录-----------------------------
@echo  -------------------------返回操作根目录----------------------------
POPD

4、拷贝WIN7PE支持的所有文件到BOOT.WIM挂载的BOOT目录中
如果有部分文件拷贝不成功,可将原拷贝文件目录定位在当前系统,或者手动拷贝。

文件比较后自动生成的Win7PE_X86文件拷贝批处理文件内容:

Title 管理员权限运行我! 制作人:KHMSOFT(我本疯狂)
echo off
rem ===================这是从Excel工具自动生成的WIN7PE 文件拷贝bat=============================
echo .
echo ————————————Explorer:
echo .
xcopy "c:\Win7PE\Win7SP1\Mount\Program Files\Internet Explorer\ieproxy.dll" "c:\Win7PE\Win7SP1\boot\Program Files\Internet Explorer\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\ProgramData\Microsoft\User Account Pictures\user.bmp" "c:\Win7PE\Win7SP1\boot\ProgramData\Microsoft\User Account Pictures\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\appPatch\sysmain.sdb" "c:\Win7PE\Win7SP1\boot\Windows\appPatch\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\Branding\Basebrd\basebrd.dll" "c:\Win7PE\Win7SP1\boot\Windows\Branding\Basebrd\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\Branding\ShellBrd\shellbrd.dll" "c:\Win7PE\Win7SP1\boot\Windows\Branding\ShellBrd\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\explorer.exe" "c:\Win7PE\Win7SP1\boot\Windows\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dwm.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\hdwwiz.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\hdwwiz.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wow32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\WOWDEB.EXE" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\WOWEXEC.EXE" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\accessibilitycpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ActionCenterCPL.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\AuxiliaryDisplayCpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\biocpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\defaultlocationcpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\DiagCpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\hgcpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iscsicpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\OnLineIDCpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\PerfCenterCPL.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\powercpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\sdcpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SensorsCpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\sharemediacpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\systemcpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\taskbarcpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\themecpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\usercpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\werconcpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wpccpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\accessibilitycpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\actxprxy.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\adsldp.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\apphelp.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\appwiz.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\bthprops.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\collab.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\desk.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\Firewall.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\hdwwiz.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\inetcpl.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\infocardcpl.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\intl.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\irprops.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\joy.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\main.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mmsys.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\powercfg.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\sysdm.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\TabletPC.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\telephon.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\timedate.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wscui.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\AuxiliaryDisplayApi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\avicap.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\avicap32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\avifil32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\avifile.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\avrt.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\AxInstSv.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\catsrv.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\catsrvps.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\catsrvut.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\CertEnroll.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\clbcatq.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\colbact.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\collab.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\COMM.drv" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\comrepl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\comsnap.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\comsvcs.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\control.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\corpol.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\crtdll.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\cscapi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\cttune.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\d3d9.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dcomcnfg.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\devmgr.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\desk.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\deskadp.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\deskmon.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\deskperf.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dhcpsapi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\diskcopy.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\Display.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\DisplaySwitch.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmband.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmcompos.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmdlgs.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmdskmgr.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmdskres.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmdskres2.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmime.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmintf.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmloader.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmocx.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmscript.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
echo ==================================== 完成100个文件操作...
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmstyle.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmsynth.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmusic.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmutil.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmvdsitf.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmview.ocx" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dmvscres.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dsound.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\dwmredir.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\efsadu.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\eventcreate.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\eventvwr.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ExplorerFrame.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ie4uinit.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ie4uinit.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieakeng.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieaksie.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieakui.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieapfltr.dat" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieapfltr.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iedkcs32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieframe.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iepeers.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iernonce.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iesetup.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iesysprep.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieui.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieuinit.inf" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieUnatt.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iexpress.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieui.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ieuinit.inf" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\imgutil.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\inetcomm.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\inetcpl.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\intl.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\iologmsg.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\lpksetup.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\zh-cn\lpksetup.exe.mui" "c:\Win7PE\Win7SP1\boot\Windows\system32\zh-cn\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\lpksetupproxyserv.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\main.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mfcsubs.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\MMDevAPI.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mmsys.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msacm32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mscories.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mscorier.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msoert2.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msfeeds.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mshtml.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mstime.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msoert2.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msrating.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msvbvm60.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msvcrt20.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msvfw32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msvidc32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\MSVidCtl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\msvideo.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mtstocom.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\mtxlegih.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ndfapi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netapi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netcenter.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netcorehc.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netdiagfx.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netevent.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netfxperf.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netid.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netplwiz.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netprof.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\netprofm.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\NetProjW.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\nettrace.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\networkexplorer.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\networkitemfactory.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\networkmap.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\objsel.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\occache.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ole2.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ole2disp.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\ole2nls.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\olecli.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\olecli32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\oledlg.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\oleprn.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\OLESVR.DLL" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\olesvr32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\olethk32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\osbaseln.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\pdh.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\PnPUnattend.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\PnPutil.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\pnpts.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\PNPXAssoc.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\PNPXAssocPrx.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\puiapi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\quartz.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\Query.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
echo ==================================== 完成200个文件操作...
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\RstrtMgr.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\Sens.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shwebsvc.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shdocvw.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shellstyle.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shfolder.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shimgvw.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shsvcs.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shunimpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\spwizimg.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\stclient.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\sysdm.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesAdvanced.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesComputerName.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesDataExecutionPrevention.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesHardware.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesPerformance.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesProtection.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\SystemPropertiesRemote.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\themecpl.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\themeui.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\thumbcache.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\timedate.cpl" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\tracerpt.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\TSTheme.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\txflog.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\USER.EXE" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\uxsms.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\VAN.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\vaultcli.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\verclsid.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\WcsPlugInService.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wdi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wecapi.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wecsvc.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wecutil.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\WindowsCodecsExt.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\winrnr.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wmdmlog.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wmdmps.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wmdrmdev.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wmdrmnet.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\wmdrmsdk.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\rshx32.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\zh-cn\rshx32.dll.mui" "c:\Win7PE\Win7SP1\boot\Windows\system32\zh-cn\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\shpafact.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\twext.dll" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\system32\InfDefaultInstall.exe" "c:\Win7PE\Win7SP1\boot\Windows\system32\" /-Y /H
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
..

echo ==================================== 完成400个文件操作...
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\System32\services.msc" "c:\Win7PE\Win7SP1\boot\Windows\System32\" /-Y /H
xcopy "c:\Win7PE\Win7SP1\Mount\Windows\System32\srvsvc.dll" "c:\Win7PE\Win7SP1\boot\Windows\System32\" /-Y /H
.
.
.
.
.
.
.
.
.
.

.
.

echo ================================ 操作完成,共处理了670个文件。


5、下载我提供的config 注册表文件,替换到boot 目录下的Windows\System32\ 目录中

6、自己制作或者下载别人制作好的PEcmd.ini 配置文件、PECMD.EXE文件到boot 目录下的Windows\System32\ 目录中,同时拷贝PEcmd.ini 配置文件中的配置软件到相应的目录中。

自动生成的Win7SP1PE文件拷贝批处理.zip
http://kuai.xunlei.com/d/TBKWMIXLWYJJ

创建好的注册表WinPE_32.zip   config目录拷贝到挂载的boot 目录中的Windows\System32\目录下替换
http://kuai.xunlei.com/d/TWWPCLCHPLMH

PECMD.EXE  v1.70  2012.7.13 X86 版本下载:
http://kuai.xunlei.com/d/TNOLZNNEOCAT

[ 本帖最后由 2010khmsoft 于 2012-11-22 14:45 编辑 ]
作者: caocaofff    时间: 2012-11-7 09:24
能上几张按这个制作好的PE的图吗?
作者: liwanxi    时间: 2012-11-7 10:59
这下菜鸟有福了。
作者: 2011jipgl    时间: 2012-11-7 12:23
提示: 作者被禁止或删除 内容自动屏蔽
作者: 2011jipgl    时间: 2012-11-8 15:51
提示: 作者被禁止或删除 内容自动屏蔽
作者: 201200000    时间: 2012-11-8 15:54
学习!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
作者: 2010hook    时间: 2012-11-12 00:01
没有使用相对路径, 文件显得零散.
楼主有没有测试过的? 做成功了吗?
作者: 2010khmsoft    时间: 2012-11-12 09:12
成功不成功,你自己实践看看

我不是无忧粉丝,到远景可更直接的了解我
作者: zhoubin    时间: 2012-11-22 09:12
楼主:
你好,我用的系统是win7,不是sp1,我的系统文件基本上都是2009年7月14日的,版本应该是6.1.7600.16385吧(我不是很懂)。。。。
我这里只有基于6.1.7600.16385的win7光盘文件。。。。。
你那里有没有基于6.1.7600.16385的方法呀,实在没有,给个基于6.1.7600.16385的注册表文件也行呀!!!
谢谢您!!!

[ 本帖最后由 zhoubin 于 2012-11-22 09:48 编辑 ]
作者: 2010khmsoft    时间: 2012-11-22 09:56
标题: 回复 #9 zhoubin 的帖子
我的当前系统是Win7SP1_X64企业版,一样可制作WIN7SP1PE_X86光盘,制作WIN7PE与当前系统无关,可挂载MSDN光盘的。
作者: zhoubin    时间: 2012-11-22 10:06
不好意思,我没讲清楚,我想做的是WIN7PE_X86光盘,不是SP1PE_X86光盘。。。。
我手里只有win7光盘,不是sp1的。。。。
哎,看样子,我还得去下载sp1光盘呢。。。
作者: cheong0hk    时间: 2012-11-22 10:17
学习!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
作者: 2010khmsoft    时间: 2012-11-22 10:22
标题: 回复 #11 zhoubin 的帖子
此批处理文件就是EXplorer.exe支持的文件,应该相同,挂MSDN光盘就可以了,如果制作SP1就挂MSDNSP1光盘
作者: zhoubin    时间: 2012-11-22 10:46
哦,谢谢您。。。。
我不用去下载大个的msdnsp1光盘了。。。。
顺便再问一下,你给的注册表文件也可以用在2009年版的msdn光盘上(不是msdnsp1光盘)吗?

[ 本帖最后由 zhoubin 于 2012-11-22 10:50 编辑 ]
作者: dfw9    时间: 2012-11-22 11:00
虚拟光驱挂win7sp1的ISO试试,呵呵。

另win8PE的也试试啊。

[ 本帖最后由 dfw9 于 2012-11-22 11:03 编辑 ]
作者: 2010khmsoft    时间: 2012-11-22 11:01
config注册表单元应该是SP1的,不过你可通过Registry Workshop软件,根据创建时间来提取Explorer.exe的注册信息的。

[ 本帖最后由 2010khmsoft 于 2012-11-22 11:03 编辑 ]
作者: zhoubin    时间: 2012-11-22 11:42
原帖由 2010khmsoft 于 2012-11-22 11:01 发表
config注册表单元应该是SP1的,不过你可通过Registry Workshop软件,根据创建时间来提取Explorer.exe的注册信息的。

要是有2009年版的win7注册表文件就好了(不是sp1的)。。。。。
再次感谢楼主的回复,谢谢!!!
作者: 2010khmsoft    时间: 2012-11-22 14:46
注册表支持文件已经更新
作者: 2012YKK    时间: 2012-11-23 12:07
好文好文!! 收藏了,谢谢楼主的分享!!
作者: zh94518    时间: 2013-8-27 18:20
顶你 绝对支持了 。。。。。。。。
作者: 老鼠打洞    时间: 2014-4-20 20:18
就是不会怎么用~东西是好啊
作者: liquan2    时间: 2014-5-2 12:14
咨询下:
export.cmd批处理内容:是将第二个索引输出到\oemwim\boot.wim  可是第二个索引是安装win的setup界面啊 "Microsoft Windows Setup (x86)” 是不是应该导出第一个索引啊
boot.cmd批处理文件内容:挂载的wim是原始的boot 这里是不是更改指向export.cmd 处理的\oemwim\boot.wim,是不是在暂停处直接运行install.cmd批处理内容,然后在在暂停处运行“拷贝WIN7PE支持的所有文件到BOOT.WIM挂载的BOOT目录中”这一段。然后在按5、6的顺序安装

作者: 影子天团    时间: 2014-5-15 23:37
希望可以用吧

作者: 影子天团    时间: 2014-6-7 18:16
楼主能换个下载连接吗?下载不了,或者发给我ctyw@sohu.com,谢谢
作者: lsgxs2008    时间: 2016-4-12 19:00
我学习winpe有点晚,现在才刚刚看到自己制作的winpe,可是注册表的修改还是一头雾水,你这个写的非常好,实用。烦劳楼主给个地址,帖子上的下载地址已经失效。拜托楼主,多谢!
作者: lsgxs2008    时间: 2016-4-12 19:00
我学习winpe有点晚,现在才刚刚看到自己制作的winpe,可是注册表的修改还是一头雾水,你这个写的非常好,实用。烦劳楼主给个地址,帖子上的下载地址已经失效。拜托楼主,多谢!
作者: lsgxs2008    时间: 2016-4-12 19:00
我学习winpe有点晚,现在才刚刚看到自己制作的winpe,可是注册表的修改还是一头雾水,你这个写的非常好,实用。烦劳楼主给个地址,帖子上的下载地址已经失效。拜托楼主,多谢!
作者: lsgxs2008    时间: 2016-4-12 19:01
来的有点晚,下载链接都失效了。

作者: ert12    时间: 2016-4-16 10:45
下载链接失效了,请楼主更正一下
作者: yytio    时间: 2016-4-16 10:54
来的有点晚,下载链接都失效了。,能发到我邮箱吗 307263624@qq.com
作者: 2011npwjm    时间: 2016-4-16 11:11
谢谢楼主的分享
作者: 2012hzy6420    时间: 2016-4-16 13:55
xxfx




欢迎光临 无忧启动论坛 (http://wuyou.net./) Powered by Discuz! X3.3