1、用于私网的IP地址段:

10.0.0.0/8: 10.0.0.0~10.255.255.255
172.16.0.0/12: 172.16.0.0~172.31.255.255
192.168.0.0/16: 192.168.0.0~192.168.255.255

2、汇总当前连接数:

C:\Users\Administrator>netstat -ano | find "4433" /C

3、桌面图标设置:

rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0

4、强制删除非空目录\文件:

C:\>rmdir /S /Q C:\YQTRACK\RemoteGather\RecordData\Html
C:\>del /F /A /Q C:\YQTRACK\RemoteGatherV6\libzmq.dll

5、Win2012打开网页速度慢:

netsh int tcp set global ecn=disable

6、关闭Win10自动更新:

运行 --> gpedit.msc --> 计算机管理 --> 管理模板 --> Windows组件 --> Windows更新 --> 配置自动更新(已禁用)

7、将Notepad2加入到右键[REG]

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\Notepad2]

[HKEY_CLASSES_ROOT\*\shell\Notepad2\command]
@="C:\\tools\\Notepad2\\Notepad2.exe %1"

8、配置网络地址

配置静态IP:
netsh interface ip set address "Ethernet0" static 192.168.1.135 255.255.255.0 192.168.1.1 配置DNS:
netsh interface ip set dns "Ethernet0" static 202.96.134.133 显示IP地址和其他信息:
netsh interface ip show config

9、本地端口转发

netsh interface portproxy add v4tov4 listenaddress=172.16.1.119 listenport=7000 connectaddress=127.0.0.1 connectport=7000
netstat -ano | find "7000"

如果不能正常转发,检查“IP Helper”及“WinHTTP Web Proxy Auto-Discovery Service”是否正常运行。

10、Windows动态端口修改:

查看动态端口:
netsh int ipv4 show dynamicport tcp
修改动态端口:
netsh int ipv4 set dynamicport tcp start=10000 num=50000

11、删除windows server backup备份

C:\>Wbadmin delete catalog

12、度盘助手:

https://chrome.google.com/webstore/category/extensions?hl=zh-CN  --> tampermonkey
https://greasyfork.org/scripts/23635-%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E7%9B%B4%E6%8E%A5%E4%B8%8B%E8%BD%BD%E5%8A%A9%E6%89%8B/code/%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E7%9B%B4%E6%8E%A5%E4%B8%8B%E8%BD%BD%E5%8A%A9%E6%89%8B.user.js

13、解决total commander中找不到迅雷下载目录“TDDOWNLOAD”的问题:

cmd命令定位到下载目录所在盘。然后输入如下命令:

E:\Download>attrib -s TDDOWNLOAD

14、命令行重启SSVIP服务:

REM 停止SSVIP服务
taskkill /F /IM ShadowsocksR-dotnet4.0.exe
REM 启动SSVIP服务
start /D "D:\SSVIP" ShadowsocksR-dotnet4.0.exe

15、解决Office 2016打开网上下载文件,提示"文件已损坏"。

文件 --> 选项 --> 信任中心 --> 信任中心设置 --> 收保护的视图 -->去掉3个项目前边的对勾。

16、Windows 10 “因为文件共享不安全,所以你不能连接到文件共享”

"运行" --> "control" --> "程序" --> "启用或关闭Windows功能" --> "SMB1.0/CIFS文件共享支持"

17、统计当前"已连接"的连接数量

\>netstat -ano | find "ESTABLISHED" /c

18、Windows 2012 评估版延长使用期限(可重置5次)

查看剩余的试用时间和可重置次数:

slmgr.vbs /dlv

重置试用期:

slmgr.vbs /rearm

19、Chrome复制标签快捷键:

Alt+D+Enter

 

[THE END]

最新文章

  1. 怎样才能自学好Java?
  2. 什么是JS事件冒泡?
  3. 一份不错的vue.js基础笔记!!!!
  4. 不可或缺 Windows Native (17) - C++: 类与对象
  5. python 多线程和多核
  6. 编程中i++与++i的区别
  7. ftp 终端命令
  8. Spring实战2:装配bean—依赖注入的本质
  9. 乳草的入侵//BFS
  10. DOM笔记(一):HTMLDocument接口
  11. c++在函数后面加const
  12. ZOJ 3204 Connect them MST-Kruscal
  13. Android Studio 1.0 苹果电脑安装配置
  14. Zookeeper 集群安装
  15. 视觉SLAM中相机详解
  16. C#:几种数据库的大数据批量插入
  17. 559. Maximum Depth of N-ary Tree
  18. WPF DesiredSize & RenderSize
  19. POJ - 2635 The Embarrassed Cryptographer(千进制+同余模)
  20. POJ 3974 - Palindrome - [字符串hash+二分]

热门文章

  1. Delphi上机步骤
  2. Visual Studio Code python 代码快速自动提示
  3. 将.py文件转换成.exe文件
  4. Transposed Convolution 反卷积
  5. web渗透系列--信息收集
  6. mybatis javabean字段与数据库字段的映射
  7. shell报错:-bash: [: ==: 期待一元表达式 解决方法 ([: ==: unary operator expected)
  8. Oracle数据库的下载安装和配置
  9. Connection refused 排查过程
  10. 任意修改网页内容JS代码