first commit

This commit is contained in:
2025-11-21 17:17:42 +01:00
commit 4cad18c2a5
285 changed files with 122106 additions and 0 deletions
@@ -0,0 +1,23 @@
## Description
Play a sound file from the console window
## The Function
### [PlaySound]
Pass the path of the sound file into this function to have it play using the following syntax:
```PowerShell
PlaySound "C:\Users\User\AppData\Local\Temp\sound.wav"
```
```PowerShell
function PlaySound {
[CmdletBinding()]
param (
[Parameter (Mandatory = $True, Position=0, ValueFromPipeline = $True)]
[string]$File
)
$PlaySound=New-Object System.Media.SoundPlayer;$PlaySound.SoundLocation=$File;$PlaySound.playsync()
}
```