PowerShell/Scripts/turn-volume-up.ps1

27 lines
558 B
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
turn-volume-up.ps1 [<percent>]
.DESCRIPTION
2021-08-29 16:17:48 +02:00
Turns the audio volume up (+10% by default).
2021-07-13 21:10:02 +02:00
.EXAMPLE
PS> .\turn-volume-up.ps1
.NOTES
2021-08-29 16:17:48 +02:00
Author: Markus Fleschutz · License: CC0
2021-08-29 17:50:03 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2020-12-29 15:14:21 +01:00
#>
2021-08-29 16:17:48 +02:00
param([int]$percent = 10)
try {
$obj = New-Object -com wscript.shell
2021-08-29 16:17:48 +02:00
for ([int]$i = 0; $i -lt $percent; $i += 2) {
$obj.SendKeys([char]175) # each tick is +2%
}
2021-08-29 16:17:48 +02:00
"🔊️ volume +$($percent)%"
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}