cmd
批处理脚本将分别导出当前用户的用户变量 PATH 和系统变量 PATH
以下批处理脚本将分别导出当前用户的用户变量 PATH 和系统变量 PATH,并将它们分别保存到带有当前日期和时间前缀的文本文件中。@echo offsetlocal enabledelayedexpansion:: Change the working directory to the script's directorycd /d %~dp0:: Get the current d
cmd查找进程,关闭进程
cmd查找进程,关闭进程tasklist /v | findstr "idea" ---- 找程序名为idea的进程tasklist /fi "imagename eq idea*" ---- 找程序名为idea的进程netstat -anon|findstr ":8080" --- 找使用8080端口的进程taskkill