How to check whether a sound device is enabled or disabled?
How to check sound device manufacturer?
Below is a simple script to check whether sound device is
disabled or enabled, it also list the manufacturer’s name and product name.
Manufacturer’s name and product name will come handy if you
need to download or update driver via manufacturer’s website.
If the device has been accidentally disabled the one thing
for sure no sound will be heard from the computer. This script below will check
whether the device is disabled or not.
Here’s the script:
===================================================
$sound_info = Get-WmiObject -class Win32_SoundDevice
foreach ($zsound_info
in $sound_info)
{
"Sound
Device Manufacturer is: " + $zsound_info.Manufacturer
"Sound
Device Product Name is: " + $zsound_info.ProductName
$sound_status=$sound_info.statusinfo
if ($sound_status -eq
"3") {
Write-Output
"Device logical state is: Enabled"
}
elseif
($sound_status -eq
"4") {
Write-Output
"Device logical state is: Disabled"
}
elseif
($sound_status -eq
"5") {
Write-Output
"Sorry can't access sound device
property."
}
else{
Write-Output
"Check for further errors if sound device is
not working."
}
}
===================================================
So if need to update the sound driver but doesn't know the manufacturer, above command will come in handy to browse the web and look for updated drivers.
Sample output:
Sound Device Manufacturer is: Intel(R) Corporation
Sound Device Product Name is: Intel(R) Display Audio
Device logical state is: Enabled
Sound Device Manufacturer is: Realtek
Sound Device Product Name is: Realtek High Definition Audio
Device logical state is: Enabled
Sample result:
Manufacturer
SEIKO EPSON CORPORATION
SEIKO EPSON CORPORATION
Realtek
Intel(R) Corporation
SEIKO EPSON CORPORATION
SEIKO EPSON CORPORATION
Realtek
Intel(R) Corporation
Name
EPSON Projector ENP Audio Device
EPSON Projector MPP Audio Device
Realtek High Definition Audio
Intel(R) Corporation Intel(R) Display Audio
Status StatusInfo
OK 3
OK 3
OK 3
OK 3
EPSON Projector ENP Audio Device
EPSON Projector MPP Audio Device
Realtek High Definition Audio
Intel(R) Corporation Intel(R) Display Audio
Status StatusInfo
OK 3
OK 3
OK 3
OK 3
==================
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
https://play.google.com/store/apps/details?id=com.myrosaryapp
Can i also disable or enable the device by changing the status info?
ReplyDelete