• 关于WINDOWS命令


    1. Windows netstat 查看端口、进程占用

      netstat -aon —  显示全部进程

      

    2. 查看进程命令

      tasklist — 显示全部进程

      taskkill — 关闭至少一个系统进程命令

        /pid 后面是系统的进程id 如先查到notepad.exe的id是2152,则格式为 taskkill /pid 2152,多个时格式为 taskkill /pid 2152 /pid 1284

        /im 后面是系统的进程名 如要关闭notepad.exe,格式为taskkill /im notepad.exe,指定多个 时格式为taskkill /im notepad.exe /im iexplorer.exe .如果是要关闭所有的,则使用通配符*,即 askkill /im *.exe

        /T 后面是结合上两个命令实现,如taskkill /t /im notepad.exe或者taskkill /t /pid 2152 这个效果是提示后在使用者确定后关闭,有提示框.

        /F 后面也是结合/pid 和/im实现,如taskkill /F /im notepad.exe或者taskkill /F /pid 2152, 这个是没有提示框就强制关闭指定进程.

      

    3.打开注册表界面命令

        运行--regedit--enter

     HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerRunMRU目录下删除注册表

    4.打开远程桌面命令

    直接在run里面属于mstsc

  • 相关阅读:
    linux各文件夹的作用
    CodeIgniter的URL传过来的中文参数处理错误的修复
    syn_ack攻击
    分治排序
    Linux Shell学习笔记
    sql题型
    jquery ajax
    json 字符串与对象之间的转换
    常用的VIM命令列表 移动光标
    visual c++ 2012 内存泄漏检测方法
  • 原文地址:https://www.cnblogs.com/emily1130/p/3614020.html
Copyright © 2020-2023  润新知