可以壮胆的约会美女同事的发送指令:

1
MSG /server:192.168.1.101 * "小美,下班后一起去吃饭呐,我是办公室里大壮!"

通过cmd实现仿黑客帝国数字雨的代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@echo off  
:line
color 0a
setlocal ENABLEDELAYEDEXPANSION

for /l %%i in (0) do (
set "line="
for /l %%j in (1,1,80) do (
set /a Down%%j-=2
set "x=!Down%%j!"
if !x! LSS 0 (
set /a Arrow%%j=!random!%%3
set /a Down%%j=!random!%%15+10
)
set "x=!Arrow%%j!"
if "!x!" == "2" (
set "line=!line!!random:~-1! "
) else (set "line=!line! ")
)
set /p=!line!<nul
)
goto line

列出连接过的wifi名称和详细信息包括密码

1
2
3
4
#显示wifi列表
netsh wlan show profiles
#查密码
netsh wlan show profile name="wifi名称" key=clear

显示外网ip地址

1
curl -L ip.tool.lu

远程控制内网电脑

1
mstsc

查看用户列表

1
2
3
4
#用户列表
net user
#删除某个用户
net user hacker /del

扫描电脑修复问题

1
sfc /scannow

预定时间关机

1
2
3
4
#5分钟(300秒)后关机
shutdown /s /t 300
#取消关机
shutdown /a

覆写硬盘空间(以防recuva等软件恢复被删除文件)

1
cipher /w:D:

文件加密,只有本机用户才能访问(解密/d)

1
cipher /e D:\文件名

文件夹加密,文件夹里所有文件加密(解密/d)

1
cipher /e /s:D:\文件夹\

非本机用户访问加密文件:系统搜索“加密”,管理文件加密证书,导出证书

网络链路诊断(查访问指定网络的跳转过程)

1
tracert www.baidu.com

激活win11绕过联网(电脑重启后无需联网激活)

shift+F10打开cmd输入

1
oobe \bypassnro

启动IE浏览器

1
CreateObject("InternetExplorer.Application").Visible=true

将命令行写入文本改后缀.vbs