PowerShell/Scripts/unmute-audio.ps1
2020-12-28 11:00:35 +00:00

18 lines
375 B
PowerShell
Executable File

#!/snap/bin/powershell
# Syntax: ./unmute-audio.ps1
# Description: unmutes the audio
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
try {
$obj = new-object -com wscript.shell
$obj.SendKeys([char]173)
write-output "OK"
exit 0
} catch {
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}