常见场景

远程登录

1
mstsc

注册表

win + R启动运行窗口,输入如下内容:

1
regedit

计算MD5

1
2
3
4
5
6
7
8
9
10
11
12
13
certutil -hashfile  <文件名>  <hash类型>

# 生成MD5
certutil -hashfile demo.txt MD5

# 生成SHA1
certutil -hashfile demo.txt SHA1

# 生成SHA256
certutil -hashfile demo.txt SHA256

# 生成SHA512
certutil -hashfile demo.txt SHA512

网卡MTU管理

1
2
3
4
5
# 查看各网卡MTU值
netsh interface ipv4 show subinterfaces

# 修改指定网卡MTU值
netsh interface ipv4 set subinterface <interface_name> mtu=<value> store=persistent

License管理

参考文档:适用于 Windows Server 和 Windows 的密钥管理服务 (KMS) 客户端激活和产品密钥 | Microsoft Learn

激活系统

1
2
3
slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
slmgr /skms kms.03k.org
slmgr /ato

查看激活信息

1
slmgr /dlv