Windows-7

Windows Vista /7 命令行啟動“設置麥克風”嚮導(或麥克風測試嚮導)

  • October 12, 2010

我正在為我們的使用者整理說明來測試他們的麥克風。Vista 和 7 更改了錄音機,因此它不會播放聲音。因此它不適合測試聲音(他們必須保存文件,找到它,打開它,不可避免地獲得 Windows Media Player“第一次”體驗……那時他們已經忘記了他們在做什麼)。

我看到測試麥克風的唯一其他選項是點擊開始>控制面板>聲音>麥克風>配置>設置麥克風(並希望他們在經典設置中沒有控制面板。

我知道有一些方法可以像這樣通過命令行啟動聲音對話框。

有任何想法嗎?

設置麥克風嚮導隱藏在 SpeechUX.dll 中。您可以像這樣呼叫 SpeechUX.dll:

rundll32.exe "%windir%\system32\speech\speechux\SpeechUX.dll", RunWizard Tutorial (Speech Recognition Tutorial)
rundll32.exe "%windir%\system32\speech\speechux\SpeechUX.dll", RunWizard UserTraining (Voice Training)
rundll32.exe "%windir%\system32\speech\speechux\SpeechUX.dll", RunWizard MicTraining (Microphone Training)
rundll32.exe "%windir%\system32\speech\speechux\SpeechUX.dll", RunWizard UserEnrollment (Set Up Speech Recognition)

所以你基本上想要: rundll32.exe "%windir%\system32\speech\speechux\SpeechUX.dll", RunWizard MicTraining

引用自:https://serverfault.com/questions/116960