turn-volume-fully-up
Turns the volume fully up
#Requires -Version 5.1
try {
$obj = New-Object -com wscript.shell
for ([int]$i = 0; $i -lt 100; $i += 2) {
$obj.SendKeys([char]175)
}
exit 0
} catch {
throw
}This script has no configurable parameters.