mgeeky-Penetration-Testing-.../red-teaming/C3-Client/speak.ps1
Mariusz B. / mgeeky ed4791fb4e Added C3 Client
2021-03-24 04:21:01 +01:00

8 lines
164 B
PowerShell

param (
[string]$message
)
Add-Type -AssemblyName System.Speech
$synth = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer
$synth.Speak($message)