Skip to content

Instantly share code, notes, and snippets.

@tigorlazuardi
Created March 16, 2021 15:41
Show Gist options
  • Save tigorlazuardi/9ad40dace40a060898d2d8c40b88724f to your computer and use it in GitHub Desktop.
Save tigorlazuardi/9ad40dace40a060898d2d8c40b88724f to your computer and use it in GitHub Desktop.
Read current time outloud (Windows Powershell Script)
Add-Type -AssemblyName System.Speech;
$read = [string]::Format("It's {0}", $(Get-Date -Format "hh tt"));
(New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak($read);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment