2024年11月

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions for 'id_rsa' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "id_rsa": bad permissions

@echo off
set /p filename=请输入文件名(包括扩展名): 

:: 检查文件是否存在
if not exist "%filename%" (
    echo 文件 "%filename%" 不存在。
    pause
    exit /b
)

:: 停止继承权限
icacls "%filename%" /inheritance:r

:: 获取当前用户名,并赋予读取权限
icacls "%filename%" /grant:r "%username%:(R)"

echo 权限设置完成。
pause

查看端口得到PID
netstat -nao | findstr 3306
TCP 127.0.0.1:3306 0.0.0.0:0 LISTENING 3876(PID)

根据PID查看进程对应的程序名称
tasklist /V | findstr 3876
mysqld.exe 3876 Services...

或者
wmic process list brief | findstr 3876

得到程序全路径名
wmic process where processid=3876 get processid,executablepath,name

杀进程
taskkill /PID 3876 /F
或者
ntsd -c q -p 3876
或者
wmic process where name="mysqld.exe" delete
wmic process where processid=3876 call terminate