1樓:匿名使用者
上面的都不對.
@echo off
copy /y "c:\program files\thunder\userconfig.ini" "c:
\program files\thunder\profiles\userconfig.ini"
start "" ""c:\program files\thunder\thunder.exe"
存為bat放到開始選單的啟動資料夾裡.
注意:前提是關閉迅雷自帶的開機啟動.
2樓:
@echo off
copy /y "c:\program files\thunder\userconfig.ini" "c:
\program files\thunder\profiles\userconfig.ini"
start "" "c:\program files\thunder network\thunder\thunder.exe"
儲存為.bat檔案,把他拖到"開始"--"程式"--"啟動"裡面就可以了
3樓:匿名使用者
不要用迅雷的開機執行功能,否則不能保證批處理是否會在迅雷前執行,在批處理裡啟動迅雷.
copy c:\program files\thunder\userconfig.ini c:
\program files\thunder\profiles\userconfig.ini /y
"c:\program files\thunder network\thunder\thunder.exe" /s
其實不一定要在開機時執行,也可以在關機時替換.
執行 gpedit.msc
計算機配置--windows 設定--指令碼(啟動/關機)--關機--新增--指令碼名--瀏覽找到你的指令碼--確定.
這個指令碼不用啟動迅雷,只要
copy c:\program files\thunder\userconfig.ini c:
\program files\thunder\profiles\userconfig.ini /y
就可以了
4樓:一百一渡
copy %0 "c:\program files\thunder\profiles\userconfig.ini"
拖到啟動項.
5樓:匿名使用者
xcopy /y c:\program files\thunder\userconfig.ini c:
\program files\thunder\profiles\userconfig.ini
是不是這樣
bat批處理修改檔案內容,bat批處理修改檔案內容
批處理是一種簡化的指令碼語言,也稱作巨集。它應用於dos和windows系統中,它是由dos或者windows系統內嵌的命令直譯器 通常是command.com或者cmd.exe 解釋執行。類似於unix中的shell指令碼。批處理檔案具有.bat或者.cmd的副檔名,其最簡單的例子,是逐行書寫在命...
求批處理高手幫忙做bat批處理檔案
echo off if exist c a.exe start c a.exe else if exist c b.exe start c b.exe 用 if exist 檢測檔案或資料夾是否存在,然後在執行.如果批處理直接使用a.exe b.exe,那麼批處理會等待a.exe或b.exe退出後批...
如何製作 bat批處理檔案定時重啟軟體
在要關閉的軟體路徑下新建。bat檔案 如下 echo offecho 準備關閉360瀏覽器 taskkill f im 360se.exeecho 關閉軟體成功 echo 準備啟動360瀏覽器 echo 啟動軟體成功 echo 等待60秒後再次啟動 choice t 60 c ync cs d y ...