PowerShell/Scripts/turn-volume-up.ps1

29 lines
654 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2021-09-24 08:57:08 +02:00
Turns the audio volume up (+10% by default)
2021-10-04 21:29:23 +02:00
.DESCRIPTION
2021-10-16 16:50:10 +02:00
This script turns the audio volume up (by +10% by default)
.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-07-13 21:10:02 +02:00
.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)%"
2021-09-27 10:09:45 +02:00
exit 0 # success
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}