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

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