mirror of
https://github.com/mgeeky/Penetration-Testing-Tools.git
synced 2024-11-21 18:11:37 +01:00
8 lines
164 B
PowerShell
8 lines
164 B
PowerShell
param (
|
|
[string]$message
|
|
)
|
|
|
|
Add-Type -AssemblyName System.Speech
|
|
$synth = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer
|
|
$synth.Speak($message)
|