PowerShell Maestro
There are articles available about PowerShell, Windows, Linux and IT security on this blog.
Monday, December 4, 2017
Powershell: Counter with speech
This is a basic counter with speech:
# Making a speech object:
Add-Type -AssemblyName System.speech
$speak = New-Object System.Speech.Synthesis.SpeechSynthesizer
# The counter with speech:
$i = 0
while( $i -le 100){
$speak.Speak($i)
$i++
}
Newer Post
Older Post
Home