This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ibjs.net 20169806 | |
Add-Type -AssemblyName System.speech | |
$Hedda=New-Object ` | |
System.Speech.Synthesis.SpeechSynthesizer | |
$hedda.SelectVoice(` | |
($hedda.GetInstalledVoices().voiceinfo|?{$_.name -match "Hedda"}).name) | |
$GD=@' | |
$D=get-date | |
$S="Heute ist {0} der {1} {2} {3}. Es war gerade {4} Uhr und {5} Minuten und {6} Sekunden" -f ` | |
$D.tostring("dddd"),$D.day,$D.tostring("MMMM"),$D.year,$D.hour,$D.minute,$D.second | |
$Hedda.speak($S) | |
'@ | |
$Zeitansage={iex $GD} | |
&$Zeitansage | |
#Call Operator, Script Block, Invoke Expression und Here String in eier Reihe |
Keine Kommentare:
Kommentar veröffentlichen