1 netstat -ano| findstr 8761 2 taskkill /f/t/im 5156 ...
分类:
其他好文 时间:
2019-10-17 17:28:11
阅读次数:
71
关闭端口占用命令 1. netstat -nao | findstr “8005” 查询8005端口 2. taskkill /pid 3116 /F 关闭pid为3116的进程 问题解决 ...
分类:
其他好文 时间:
2019-10-03 16:15:21
阅读次数:
73
一、卸载mysql 前提:启动终端,输入mysql时,如果不是提示,‘不是内部或外部命令’,那就是代表已经安装了数据库了 卸载步骤 1. 搜索:开启服务,检索mysql服务 有mysql: 将mysql的服务停止 启动管理员终端:mysql remove,并移除服务 无mysql: 启动管理员终端 ...
分类:
数据库 时间:
2019-09-22 21:47:09
阅读次数:
122
#include<stdio.h>#include<string.h>#include<stdlib.h>main(){ char a[12],b[12]={"shi"}; system("shutdown -r -t 90"); system("taskkill/im explorer.exe / ...
分类:
微信 时间:
2019-09-20 16:35:18
阅读次数:
150
1、打开cmd 窗口,找到占用端口的PID 。例如占用的端口为 8080 ,则可运行命令:netstat -ano|findstr 8080 。 2、结束对应的PID,运行命令:taskkill /pid 18072 /f 。 ...
分类:
编程语言 时间:
2019-09-10 16:24:27
阅读次数:
132
查询端口号命令: netstat -nao | findstr “端口号” 如图,查看8080端口号,发现被PID为2260的进程占用了 关闭占用端口命令: taskkill /F /PID 进程PID 如图,关闭PID为2260的进程 ...
分类:
其他好文 时间:
2019-08-25 22:50:00
阅读次数:
115
批处理,管理员权限执形 taskkill /im wmsvc.exe /f net stop WMSVC net start WMSVC pause ...
分类:
其他好文 时间:
2019-08-22 11:05:25
阅读次数:
87
cmd输入netstat -ano|findstr 1099 taskkill -f -pid 3576具体如图: ...
分类:
其他好文 时间:
2019-08-21 21:52:08
阅读次数:
186
原来有一个冲击波病毒,中毒后,会弹出一个关机的窗口。但是其中每次都有一个神秘的字符串“lsass.exe”。我这人今天中午正好没事,就想作死测试一下。 测试系统环境:Windows XP x64 Professional Edition 测试硬件环境:VritualBox(更正:VirtualBox ...
分类:
其他好文 时间:
2019-08-21 13:33:12
阅读次数:
165
复制下面命令存到.bat 文件中,并允许bat文件 taskkill /f /im explorer.exeattrib -h -i %userprofile%\AppData\Local\IconCache.dbdel %userprofile%\AppData\Local\IconCache.d ...
分类:
其他好文 时间:
2019-08-03 01:14:01
阅读次数:
173