'Is it possible to use a wildcard to disable audio devices?
I am pretty new to batch files and I am looking to see if I can use a wildcard to disable all audio devices with the same name.
I currently have this:
start wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (1) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (2) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (3) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (4) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (5) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (6) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (7) Audio" call disable
wmic path Win32_PNPEntity where name="Blackmagic Decklink Quad 2 (8) Audio" call disable
Is there a wildcard I can use to select all of them without specifying each by number?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|