@Echo Off
:send
Set /p num=Enter the other party's QQ number:
If /I "%num%"=="n" Exit
start tencent://Message/?Uin=%num%
cls
Goto send
This code can start a temporary chat with any QQ user.
What I want to ask is: in the command start tencent://Message/?Uin=%num%, how was the address tencent://Message/?Uin=%num% obtained? For example, if I want to open another function of some program, how can I get a similar address?
:send
Set /p num=Enter the other party's QQ number:
If /I "%num%"=="n" Exit
start tencent://Message/?Uin=%num%
cls
Goto send
This code can start a temporary chat with any QQ user.
What I want to ask is: in the command start tencent://Message/?Uin=%num%, how was the address tencent://Message/?Uin=%num% obtained? For example, if I want to open another function of some program, how can I get a similar address?
