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)
|