mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 12:41:46 +02:00
Added mute-audio.ps1 and unmute-audio.ps1
This commit is contained in:
17
Scripts/mute-audio.ps1
Executable file
17
Scripts/mute-audio.ps1
Executable file
@ -0,0 +1,17 @@
|
||||
#!/snap/bin/powershell
|
||||
|
||||
# Syntax: ./mute-audio.ps1
|
||||
# Description: mutes 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
|
||||
}
|
17
Scripts/unmute-audio.ps1
Executable file
17
Scripts/unmute-audio.ps1
Executable file
@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
}
|
Reference in New Issue
Block a user