代码是这个
for %%i in (e d c) do (
echo 正在搜索%%i盘 请稍后...
cd /d %%i:\
for /f "delims=" %%i in ('dir "chrome.exe" --user-data-dir="%~dp0user" --disk-cache-dir="%~dp0tmp" --enable-extensions') do (start "" "%%i"
exit)
)
@echo off
for %%i in (e d c) do (
echo 正在搜索%%i盘 请稍后...
cd /d %%i:\
for /r %%a in (chrome.exe?) do (
start "" "%%a" --user-data-dir="%~dp0user" --disk-cache-dir="%~dp0tmp" --enable-extensions
exit
)
)