有人知道xp运行命令中的讲述者命令是什么吗?

来源:百度知道 编辑:UC知道 时间:2024/06/09 19:55:00
用命令打开此程序后,在你按键盘时,电脑会把你所按字母或数字读出来,谢谢帮忙

narrator

rem 这个批处理直接阅读你输入的单词
@echo off&color 0a&cls
title 阅读单词
mode con cols=88 lines=10
:_start
Set Keys=&cls
echo.
Set /p Keys= (按Q退出)请输入你想要阅读的单词:
if not defined Keys goto _start
if /i "%Keys%"=="q" exit
>%temp%\tmp.vbs echo CreateObject("SAPI.SpVoice").Speak "%Keys%"
%temp%\tmp.vbs&&del %temp%\tmp.vbs
goto _start