2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-03-25 10:10:09 +01:00
|
|
|
|
Turns the volume down
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-03-25 10:10:09 +01:00
|
|
|
|
This PowerShell script turns the audio volume down (-10% by default).
|
2021-10-16 16:50:10 +02:00
|
|
|
|
.PARAMETER percent
|
|
|
|
|
Specifies the percent number
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-24 08:57:08 +02:00
|
|
|
|
PS> ./turn-volume-down
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-30 10:49:30 +01:00
|
|
|
|
.NOTES
|
2022-03-25 10:03:25 +01:00
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
|
#>
|
2020-12-28 11:51:54 +01:00
|
|
|
|
|
2021-08-29 17:50:03 +02:00
|
|
|
|
param([int]$percent = 10)
|
2020-12-28 14:49:52 +01:00
|
|
|
|
|
2020-12-28 11:51:54 +01:00
|
|
|
|
try {
|
2020-12-28 14:49:52 +01:00
|
|
|
|
$obj = New-Object -com wscript.shell
|
2021-08-29 17:50:03 +02:00
|
|
|
|
for ([int]$i = 0; $i -lt $percent; $i += 2) {
|
2020-12-28 11:51:54 +01:00
|
|
|
|
$obj.SendKeys([char]174) # each tick is -2%
|
|
|
|
|
}
|
2022-03-25 10:10:09 +01:00
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "$($percent)% softer."
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2020-12-28 11:51:54 +01:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2020-12-28 11:51:54 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|