2024-10-01 15:24:16 +02:00
|
|
|
|
<#
|
2021-07-13 21:10:02 +02:00
|
|
|
|
.SYNOPSIS
|
2022-03-25 10:09:07 +01:00
|
|
|
|
Turns the volume up
|
2021-10-04 21:29:23 +02:00
|
|
|
|
.DESCRIPTION
|
2022-03-25 10:09:07 +01:00
|
|
|
|
This PowerShell script turns the audio volume up (+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-up
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
2022-01-30 10:49:30 +01:00
|
|
|
|
.NOTES
|
2022-03-25 10:09:07 +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 16:17:48 +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 16:17:48 +02:00
|
|
|
|
for ([int]$i = 0; $i -lt $percent; $i += 2) {
|
2020-12-28 11:51:54 +01:00
|
|
|
|
$obj.SendKeys([char]175) # each tick is +2%
|
|
|
|
|
}
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2020-12-28 11:51:54 +01:00
|
|
|
|
} catch {
|
2022-04-13 12:06:32 +02:00
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-28 11:51:54 +01:00
|
|
|
|
exit 1
|
|
|
|
|
}
|