mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-15 17:36:48 +02:00
Update turn-volume-up.ps1
This commit is contained in:
parent
1d683626f0
commit
11ca126b33
@ -2,24 +2,23 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
turn-volume-up.ps1 [<percent>]
|
turn-volume-up.ps1 [<percent>]
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Turns the audio volume up (+10% by default)
|
Turns the audio volume up (+10% by default).
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> .\turn-volume-up.ps1
|
PS> .\turn-volume-up.ps1
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz
|
Author: Markus Fleschutz · License: CC0
|
||||||
License: CC0
|
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([int]$Percent = 10)
|
param([int]$percent = 10)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$obj = New-Object -com wscript.shell
|
$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%
|
$obj.SendKeys([char]175) # each tick is +2%
|
||||||
}
|
}
|
||||||
"🔊️ volume +$($Percent)%"
|
"🔊️ volume +$($percent)%"
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user