复制
把d:\test\test.txt这个文件复制到D盘根目录下,那么,使用 copy d:\test\test.txt d:\ 就可以轻易办到。
copy /y D:\test\test.txt d:\
copy /y “D:\test\user 01\test.txt” d:\files
如果要复制的路径带有空格、&等特殊符号的时候,请使用引号把这些特殊字符括起来
参数 /y (相当于自动选择了Yes选项)
终止进程
taskkill /f /t /im QQ.exe
taskkill /f /t /im QQService.exe
后面的参数/im表示终止该进程的所有子进程
修改注册表
reg add “HKEY_CURRENT_USER\Software\Classes\ms-settings\Shell\Open\Command” /d “C:\Program Files (x86)\QQbutler\Vbutler.exe” /f
reg add “HKEY_CURRENT_USER\Software\Classes\ms-settings\Shell\Open\Command” /v DelegateExecute /t REG_SZ /d “” /f
清理注册表项
REG DELETE HKEY_CURRENT_USER\Software\Classes\ms-settings\Shell\Open\Command /f
创建计划任务
schtasks.exe /create /tn “VButlerAutoRun” /sc ONLOGON /RL HIGHEST /tr “C:\Program Files (x86)\QQbutler\VbutlerClient.exe”
运行计划任务
schtasks /run /tn “VButlerAutoRun”
清理计划任务
schtasks /delete /tn VButlerAutoRun /f