Windows下查看WIFI密码
列出WIFI名称
1 |
netsh wlan show profiles |
按名称查询
1 |
netsh wlan show profiles "aet" key=clear |
找到输出结果中关键内容对应的部分
关UAC
1 2 3 |
@reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System /v EnableLUA /t REG_DWORD /f /d 0 pause |
域名解析相关
1 2 3 4 5 6 7 8 |
C:\Users\enlink\Downloads\curl-8.2.1\curl-8.2.1\build>nslookup baidu.com 服务器: UnKnown Address: 192.168.1.1 非权威应答: 名称: baidu.com Addresses: 39.156.66.10 110.242.68.66 |
1 2 3 4 5 6 7 |
C:\Users\enlink\Downloads\curl-8.2.1\curl-8.2.1\build>nslookup google.com 8.8.8.8 服务器: dns.google Address: 8.8.8.8 名称: google.com Addresses: 46.82.174.69 46.82.174.69 |
修改代码页
临时
1 |
chcp 65001 |
永久
- 改注册表,添加字符串值
- 键:
Autorun
- 值:
chcp 65001
1 |
HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ CMD应用记述二07/07
- ♥ 语法函数命令一10/02
- ♥ C++并发编程_同步并发(Condition_variable)05/21
- ♥ Soui三05/19
- ♥ Reading 2020 《呐喊》09/28
- ♥ 深入理解C++11:C++11新特性解析与应用 三01/05