奈何。。
这个是服务的吧 本帖最后由 lixiaolong 于 2012-2-20 23:30 编辑
回复 12# 49666684
启用,禁用系统中的所有音频设备.
#include <SetupApi.au3>
Local $hDevs, $tDevInfo, $aSound = []
$hDevs = _SetupDiGetClassDevs($DIGCF_PRESENT, "media")
While _SetupDiEnumDeviceInfo($hDevs, $aSound, $tDevInfo)
$aSound += 1
$sDescr = _SetupDiGetDeviceRegistryProperty($hDevs, $tDevInfo, $SPDRP_DEVICEDESC)
$sName = _SetupDiGetDeviceRegistryProperty($hDevs, $tDevInfo, $SPDRP_FRIENDLYNAME)
If $sName <> "" Then $sDescr = $sName
ReDim $aSound[$aSound + 1]
$aSound[$aSound] = $sDescr
$aSound[$aSound] = _SetupDiGetDeviceInstanceID($hDevs, $tDevInfo)
$fResult = _SetupDiDisableDevice($hDevs, $tDevInfo, True) ; 禁用
;~ $fResult = _SetupDiDisableDevice($hDevs, $tDevInfo, False) ; 启用
WEnd
可以精简.
#include <SetupApi.au3>
Local $hDevs, $tDevInfo, $aSound = []
$hDevs = _SetupDiGetClassDevs($DIGCF_PRESENT, "media")
While _SetupDiEnumDeviceInfo($hDevs, $aSound, $tDevInfo)
$aSound += 1
;~ $fResult = _SetupDiDisableDevice($hDevs, $tDevInfo, True) ; 禁用
$fResult = _SetupDiDisableDevice($hDevs, $tDevInfo, False) ; 启用
WEnd 本帖最后由 49666684 于 2012-2-21 00:25 编辑
#include <SetupApi.au3>
; 枚举系统中的所有鼠标设备:
Local $hDevs, $tDevInfo, $aMouse = []
$hDevs = _SetupDiGetClassDevs($DIGCF_PRESENT, "Mouse")
While _SetupDiEnumDeviceInfo($hDevs, $aMouse, $tDevInfo)
$aMouse += 1
$sDescr = _SetupDiGetDeviceRegistryProperty($hDevs, $tDevInfo, $SPDRP_DEVICEDESC)
$sName = _SetupDiGetDeviceRegistryProperty($hDevs, $tDevInfo, $SPDRP_FRIENDLYNAME)
If $sName <> "" Then $sDescr = $sName
Redim $aMouse[$aMouse + 1]
$aMouse[$aMouse] = $sDescr ; 鼠标描述信息
$aMouse[$aMouse] = _SetupDiGetDeviceInstanceID($hDevs, $tDevInfo) ; 设备范例ID
WEnd
; 枚举网卡只需把"Mouse"改为"Net",磁盘则对应DiskDrive,显卡对应Display。
_SetupDiDestroyDeviceInfoList($hDevs)
_Arraydisplay($aMouse)P版的。帖子。。问题就是没有声卡的 lixiaolong
第一段代码是对的。但第二段貌似没效果哦! 我错了。。。。不明白为什么。刚才测试出问题 。现在对了。。。扫瑞 。谢谢大大 回复 20# 49666684
我刚才使用mpc播放器边看边试没成功,关闭播放器后成功.
你是不是也使用播放器了? 是的。。。。 回复 22# 49666684
如果目的是不让系统发出声音的话,直接停止Windows Audio服务比较简单.
这样使用播放器也没事的. 代码收下...... 好东西,留个记号。。。 牛啊,。。。。。。 感谢7楼~{:face (84):} 收下7楼的代码 谢谢共享,支持楼主
谢谢共享,支持楼主
页:
1
[2]