|
本帖最后由 slore 于 2020-11-22 23:09 编辑
添加重启外壳进程 菜单 在 【私人定制】界面, 右键【私人定制】打开所在目录,
MyCustom下面有 重启外壳进程菜单的注册表项目。
"Z:\WimBuilder2\Projects\WIN10XPE\_CustomFiles_\MyCustom\_RestartExplorerMenu.bat"
目前代码是
reg add HKLM\Tmp_Software\Classes\Directory\background\shell\restartshell\command /ve /d "taskkill /f /im explorer.exe" /f
改成一个 pecmd的脚本,或者一个批处理,你放到
Z:\WimBuilder2\AppData\Projects\WIN10XPE\_CustomFiles_\MyCustom\
restartshell.ini /restartshell.txt
自己再制作一个简单批处理补丁,copy命令复制到System32下面,然后 这个命令改成批处理。
restartshell.txt (重启外壳进程菜单命令)
- taskkill /f /im explorer.exe /fi "USERNAME eq %USERNAME%"
- if "%USERNAME%"=="SYSTEM" goto :EOF
- start explorer.exe
复制代码
fixrestartshellmenu.bat (构建时,私人定制 节点将自动运行)
- copy /y "%~dp0\restartshell.txt" "%X_SYS%\restartshell.cmd"
- reg add HKLM\Tmp_Software\Classes\Directory\background\shell\restartshell\command /ve /d "restartshell.cmd" /f
复制代码
|
|