Update turn-volume-up.ps1

This commit is contained in:
Markus Fleschutz 2021-08-29 16:17:48 +02:00 committed by GitHub
parent 1d683626f0
commit 11ca126b33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,24 +2,23 @@
.SYNOPSIS
turn-volume-up.ps1 [<percent>]
.DESCRIPTION
Turns the audio volume up (+10% by default)
Turns the audio volume up (+10% by default).
.EXAMPLE
PS> .\turn-volume-up.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
Author: Markus Fleschutz · License: CC0
#>
param([int]$Percent = 10)
param([int]$percent = 10)
try {
$obj = New-Object -com wscript.shell
for ([int]$i = 0; $i -lt $Percent; $i += 2) {
for ([int]$i = 0; $i -lt $percent; $i += 2) {
$obj.SendKeys([char]175) # each tick is +2%
}
"🔊️ volume +$($Percent)%"
"🔊️ volume +$($percent)%"
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"