9、关于一键制作RAMOS,若使用wimboot有关的模式,原系统中mklink建立的链接,在ramos中会失效,两种解决办法:
a、将链接SysWOW64下imageres.dll、mmres.dll、mstsc.exe替换为真实文件,系统盘占用会增加约37M
b、自行实现让ramos开机自动执行以下命令重新建立链接
dir "%systemroot%\syswow64\imageres.dll" /a:L && del /f /q "%systemroot%\syswow64\imageres.dll"
dir "%systemroot%\syswow64\mmres.dll" /a:L && del /f /q "%systemroot%\syswow64\mmres.dll"
dir "%systemroot%\syswow64\mstsc.exe" /a:L && del /f /q "%systemroot%\syswow64\mstsc.exe"
if not exist "%systemroot%\syswow64\imageres.dll" mklink "%systemroot%\syswow64\imageres.dll" "%systemroot%\system32\imageres.dll"
if not exist "%systemroot%\syswow64\mmres.dll" mklink "%systemroot%\syswow64\mmres.dll" "%systemroot%\system32\mmres.dll"
if not exist "%systemroot%\syswow64\mstsc.exe" mklink "%systemroot%\syswow64\mstsc.exe" "%systemroot%\system32\mstsc.exe"