有什麼方法可以使用命令列增加 Windows 10 中的系統音量

有什麼方法可以使用命令列增加 Windows 10 中的系統音量

我正在開發一個項目,我想透過使用 cmd(命令列)來增加系統音量。我正在運行 Windows 10 有什麼辦法可以做到這一點。我發現nircmd.exe作為 Windows XP 和 7 的 Windows 命令,但它在 Windows 10 上沒有顯示。

「SndVol32.exe」不被辨識為內部或外部指令、可操作程式或批次檔。

這意味著它僅適用於 Windows XP 和 7。

因此,請給我任何使用命令列 (CMD) 增加 Windows 10 系統音量的方法。

我也嘗試過: 我的命令列輸出

我的Windows版本

答案1

我寫了一個開源軟體調整音量.exe做任務

用法:

# Set current sound volume to 0.2
./adjust-volume.exe .2

# Get current sound volume
./adjust-volume.exe

回購協議:
https://github.com/WingTillDie/adjust-volume

答案2

NirCmd 系統需求:此實用程式可在所有版本的Windows 作業系統中運作:Windows 9x/ME、Windows NT、Windows 2000、Windows XP、Windows Server 2003、Windows Vista、Windows Server 2008、Windows 7、Windows 8 和Windows 10 。

我剛剛在 Windows 10 下測試了這個實用程序,它的工作沒有任何問題。

我使用的命令:

將系統音量增加 2000 個單位(共 65535 個單位)

nircmd.exe changesysvolume 2000

將系統音量減少 5000 個單位(共 65535 個單位)

nircmd.exe changesysvolume -5000

答案3

感謝 Biswapriyo,我透過評論得到了答案,因此您需要從給定的連結下載 nircmd 實用程式。只需向下滾動到頁面末尾,您就會找到下載連結。下載後,打開 nircmd.exe,它會要求添加到目錄,只需按「確定」即可正常工作。下載連結在這裡 下載NIRCMD.EXE

相關內容