Update turn-volume-down.ps1

This commit is contained in:
Markus Fleschutz 2022-03-25 10:03:25 +01:00 committed by GitHub
parent 6d0a982b50
commit 08140a4f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
<#
.SYNOPSIS
Turns the audio volume down (-10% by default)
Turns the audio volume down
.DESCRIPTION
This PowerShell script turns the audio volume down (by -10% by default).
.PARAMETER percent
@ -10,7 +10,7 @@
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
Author: Markus Fleschutz | License: CC0
#>
param([int]$percent = 10)