This PowerShell script speaks the given text with an English text-to-speech (TTS) voice.
text Specifies the English text to speak
PS> ./speak-english.ps1 HiAuthor: Markus Fleschutz | License: CC0
This PowerShell script speaks the given text with a Dutch text-to-speech (TTS) voice.
text Specifies the Dutch text to speak
PS> ./speak-dutch.ps1 HalloAuthor: Markus Fleschutz | License: CC0
This PowerShell script speaks the given text with a Danish text-to-speech (TTS) voice.
text Specifies the Danish text to speak
PS> ./speak-danish.ps1 HejAuthor: Markus Fleschutz | License: CC0
This PowerShell script speaks the given text with a Croatian text-to-speech (TTS) voice.
text Specifies the Croatian text to speak
PS> ./speak-croatian.ps1 zdravoAuthor: Markus Fleschutz | License: CC0
This PowerShell script speaks the given text with an Arabic text-to-speech (TTS) voice.
text Specifies the Arabic text to speak
PS> ./speak-arabic.ps1 "أهلاً"Author: Markus Fleschutz | License: CC0
This PowerShell script shows a toast-message notification for the Windows Notification Center.
text Specifies the text to show ('Hello World' by default)
title Specifies the title to show ('NOTE' by default)
duration Specifies the view duration in milliseconds (5000 by default)
PS> ./show-notification.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script sets the given image file as desktop wallpaper (.JPG or .PNG supported)
ImageFile Specifies the path to the image file
Style Specifies either Fill, Fit, Stretch, Tile, Center, or Span (default)
PS> ./set-wallpaper C:\ocean.jpgAuthor: Markus Fleschutz | License: CC0
This PowerShell script sets the audio volume to the given value in percent (0..100).
percent Specifies the volume in percent (0..100)
PS> ./set-volume.ps1 50Author: Markus Fleschutz | License: CC0
This PowerShell script sends a UDP datagram message to an IP address and port.
TargetIP Specifies the target IP address
TargetPort Specifies the target port number
Message Specifies the message text to send
PS> ./send-udp 192.168.100.100 8080 "TEST"✅ Done.Author: Markus Fleschutz | License: CC0