码迷,mamicode.com
首页 >  
搜索关键字:findstr    ( 592个结果
查看目标主机上的杀毒软件
1、主机防护软件的安装路径 命令:wmic /namespace:\\root\securitycenter2 path antivirusproduct get displayname,productstate,pathtosignedproductexe 2、将wmic命令和findstr命令 ...
分类:其他好文   时间:2021-06-04 19:16:45    阅读次数:0
IDEA启动报错
IDEA 启动项目报错: Failed to start connector [Connector[HTTP/1.1-9502]] 原因: 端口被占用 查进出: netstat -ano|findstr 9502 杀进程:taskkill /pid 2640 /f ...
分类:其他好文   时间:2021-06-04 19:02:07    阅读次数:0
windows dos命令查看端口占用情况,以及根据pid杀进程
一、查看端口占用情况: netstat -ano|findstr "9901" 9901是要查询的端口号 查询结果如图: 最后一行是进程的pid。 二、杀进程 taskkill /f /pid 612 612是要杀的进程pid /f表示强制执行 如果要根据进程的pid查看进程的详细信息: Ctrl+ ...
分类:Windows程序   时间:2021-06-04 18:42:58    阅读次数:0
干掉端口被占用的进程
1、查看端口被占用的进程: netstat -ano |findstr "端口号" 查看“4300”端口被占用的进程: 2、kill对应的进程: taskkill /f /t /im "进程id或者进程名称" 3、如果因为权限问题导致失败。请以管理员权限运行cmd ...
分类:系统相关   时间:2021-06-03 18:19:08    阅读次数:0
Windows家庭版打开或关闭Hyper-V
打开hyper-v 创建open_hyper-v.bat文件 pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.tx ...
分类:Windows程序   时间:2021-05-24 17:03:45    阅读次数:0
抓取android日志
1、指定包 adb logcat | findstr <packagename> >F:\test.log 2、指定时间 adb logcat -v threadtime -t '08-08 08:08:08.000' >F:\test.log 3、打印到cmd adb logcat 4、打印 信息 ...
分类:移动开发   时间:2021-05-24 10:00:37    阅读次数:0
windows端口占用快速查询解决方法
windows 端口占用 解决办法,netstat -ano|findstr ,taskkill /pid 10396 /f ...
分类:Windows程序   时间:2021-05-24 08:45:45    阅读次数:0
windows关闭指定端口
1 查看8084端口被什么服务占用 netstat -ano | findstr 8084 1 2 停止该服务 使用taskkill /PID 28828 /T /F 这行命令停止服务。 ...
分类:Windows程序   时间:2021-04-07 11:11:25    阅读次数:0
win10无法启动虚拟机
(1) 电脑没有Hyper-V pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do d ...
分类:Windows程序   时间:2021-04-05 12:42:13    阅读次数:0
端口被占用(8080端口被占用)
1、打开命令窗口 2、输入:netstat -ano|findstr “8080” 3、找到被占用的进程号,使用命令 taskkill /F /pid 进程号,即可 4、权限不够,那就以以管理员身份打开,重新输入命令即可 ...
分类:其他好文   时间:2021-03-31 12:25:08    阅读次数:0
592条   1 2 3 4 ... 60 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!