mirror of
https://github.com/mgeeky/Penetration-Testing-Tools.git
synced 2024-11-22 02:21:36 +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)
|