|
本帖最后由 liuzhaoyzz 于 2019-9-16 11:22 编辑
另外,我写了几个批处理,用于快速切换explorer.exe和winxshell作为shell,用于体验以及demo。放到winxshell.exe同目录。
你原来的UI_TEST.bat好多啊。我节选了。
- 用winxshell作为shell.bat
- @echo off
- winxshell -winpe
复制代码
- 用explorer.exe作为shell.bat
- @echo off
- taskkill /f /t /im WinXShell.exe
- start %SystemDrive%\Windows\explorer.exe
复制代码
- WIFI_TEST.bat
- cd /d "%~dp0"
- rem start WinXShell.exe -ui -jcfg wxsUI\UI_Volume.zip -nobeep
- rem pause
- rem start WinXShell.exe -ui -jcfg wxsUI\UI_WIFI.zip -hidewindow
- start WinXShell.exe -ui -jcfg wxsUI\UI_WIFI.zip
- pause
复制代码
|
|