winDos命令(一)

            winDos命令(一)
零:  
    cmd     
        右击-》标记-》选中-》回车(拷贝好了,刚才选中的内容)
    services.msc        是Windows 2000/XP/2003/Vista/7/2008系统中用来启动、终止并设置 Windows 服务的管理策略
    regedit     打开注册表
    ipconfig        查看网络
    ipconfig   /all     查看所有网络
    cls     清屏

    calc    计算器
    taskmgr 任务管理器
    mspaint     画图
    services.msc    服务

netstat -ano
     列出所有端口对应的PID
netstat  –ano -|findstr “5037” 
     查看5037端口被哪些程序占用,会展示PID号
tasklist
    列出所有的进程,PID
tasklist|findstr “3320” 
    查看PID为3320对应的进程
taskkill /f /pid xxx 
ntsd -c q -p xxx
    杀死xxxPID对应的进程(以上2种方法都可以)
taskkill /f /im notepad.exe
    杀死notepad.exe进程

你可能感兴趣的:(winDos命令(一))