cmd命令

windows下可能会用到的cmd命令

  • 关机

    1
    shutdown -s -t 5
  • 设置代理

    1
    2
    3
    4
    5
    6
    7
    @echo off
    title 自动设置代理服务器
    echo 正在设置代理服务器
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "127.0.0.1:3128" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d "<local>" /f
    echo 正在刷新设置 ipconfig /flushdns
  • 关闭代理

    1
    2
    3
    4
    5
    6
    7
    @echo off
    title 自动清除IE代理
    echo 正在清空代理服务器设置
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyOverride /t REG_SZ /d 0 /f
    echo 代理服务器设置已经清空 echo 正在刷新设置 ipconfig /flushdns