2022年12月
WINDOWS查进程全路径
tasklist只能看到PID和进程名,但是不知道全路径。
wmic process where processid=3876 get processid,executablepath,name
杀进程
taskkill /F /IM cmd.exe /T
taskkill /PID 1234 /F
ntsd -c q -p 3876
wmic process where name="mysqld.exe" delete
wmic process where processid=1234 call terminate
WINDOWS 命令行设置代理
这样的话,就不用在脚本里面写什么socket,requests的proxies了。
set http_proxy=SOCKS5://10.10.99.206:8011
取消的话设置为空。unset是不管用的。
set http_proxy=
set https_proxy=