Update the comment header

This commit is contained in:
Markus Fleschutz 2022-01-30 10:49:30 +01:00
parent c112524c6f
commit 7bccf69f0c
76 changed files with 216 additions and 216 deletions

View File

@ -2,17 +2,17 @@
.SYNOPSIS .SYNOPSIS
Reboots the FRITZ!Box device Reboots the FRITZ!Box device
.DESCRIPTION .DESCRIPTION
This script reboots the FRITZ!Box device This PowerShell script reboots the FRITZ!Box device
.PARAMETER Username .PARAMETER Username
Specifies the user name Specifies the user name
.PARAMETER Password .PARAMETER Password
Specifies the password Specifies the password
.EXAMPLE .EXAMPLE
PS> ./reboot-fritzbox PS> ./reboot-fritzbox
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$Username = "", [string]$Password = "") param([string]$Username = "", [string]$Password = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Reboots the local computer (needs admin rights) Reboots the local computer (needs admin rights)
.DESCRIPTION .DESCRIPTION
This script reboots the local computer (needs admin rights). This PowerShell script reboots the local computer (needs admin rights).
.EXAMPLE .EXAMPLE
PS> ./reboot PS> ./reboot
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
#Requires -RunAsAdministrator #Requires -RunAsAdministrator

View File

@ -2,17 +2,17 @@
.SYNOPSIS .SYNOPSIS
Creates a scheduled task that will display a popup message Creates a scheduled task that will display a popup message
.DESCRIPTION .DESCRIPTION
This script creates a scheduled task that will display a popup message. This PowerShell script creates a scheduled task that will display a popup message.
.EXAMPLE .EXAMPLE
PS> ./remind-me "Dentist" "4/10/2021 12:00 PM" PS> ./remind-me "Dentist" "4/10/2021 12:00 PM"
TaskPath TaskName State TaskPath TaskName State
-------- -------- ----- -------- -------- -----
\ Reminder_451733811 Ready \ Reminder_451733811 Ready
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
#requires -version 4 #requires -version 4

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Removes all empty subfolders within a directory tree Removes all empty subfolders within a directory tree
.DESCRIPTION .DESCRIPTION
This script removes all empty subfolders within a directory tree. This PowerShell script removes all empty subfolders within a directory tree.
.PARAMETER DirTree .PARAMETER DirTree
Specifies the path to the directory tree Specifies the path to the directory tree
.EXAMPLE .EXAMPLE
PS> ./remove-empty-dirs C:\Temp PS> ./remove-empty-dirs C:\Temp
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$DirTree = "") param([string]$DirTree = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Removes all jobs from all printers Removes all jobs from all printers
.DESCRIPTION .DESCRIPTION
This script removes all print jobs from all printer devices. This PowerShell script removes all print jobs from all printer devices.
.EXAMPLE .EXAMPLE
PS> ./remove-print-jobs PS> ./remove-print-jobs
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
#Requires -Version 4 #Requires -Version 4

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Removes a Git tag (locally, remote, or both) Removes a Git tag (locally, remote, or both)
.DESCRIPTION .DESCRIPTION
This script removes a Git tag, either locally, remote, or both. This PowerShell script removes a Git tag, either locally, remote, or both.
.PARAMETER TagName .PARAMETER TagName
Specifies the Git tag name Specifies the Git tag name
.PARAMETER Mode .PARAMETER Mode
@ -14,7 +14,7 @@
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
#> #>
param([string]$TagName = "", [string]$Mode = "", [string]$RepoDir = "$PWD") param([string]$TagName = "", [string]$Mode = "", [string]$RepoDir = "$PWD")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Repeats the last reply Repeats the last reply
.DESCRIPTION .DESCRIPTION
This repeats the last reply by text-to-speech (TTS). This PowerShell script repeats the last reply by text-to-speech (TTS).
.EXAMPLE .EXAMPLE
PS> ./repeat-last-reply PS> ./repeat-last-reply
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
function GetTempDir { function GetTempDir {

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Search and replace a pattern in the given files by the replacement Search and replace a pattern in the given files by the replacement
.DESCRIPTION .DESCRIPTION
This script searches and replaces a pattern in the given files by the replacement. This PowerShell script searches and replaces a pattern in the given files by the replacement.
.PARAMETER pattern .PARAMETER pattern
Specifies the pattern to look for Specifies the pattern to look for
.PARAMETER replacement .PARAMETER replacement
@ -11,10 +11,10 @@
Specifies the file to scan Specifies the file to scan
.EXAMPLE .EXAMPLE
PS> ./replace-in-files NSA "No Such Agency" C:\Temp\*.txt PS> ./replace-in-files NSA "No Such Agency" C:\Temp\*.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$pattern = "", [string]$replacement = "", [string]$files = "") param([string]$pattern = "", [string]$replacement = "", [string]$files = "")

View File

@ -5,10 +5,10 @@
This PowerShell script restarts all local network adapters (needs admin rights). This PowerShell script restarts all local network adapters (needs admin rights).
.EXAMPLE .EXAMPLE
PS> ./restart-network-adapters PS> ./restart-network-adapters
.NOTES
Author: Markus Fleschutz / License: CC0
.LINK .LINK
htts://github.com/fleschutz/PowerShell htts://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
#Requires -RunAsAdministrator #Requires -RunAsAdministrator

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Replies to "Roll a dice" Replies to "Roll a dice"
.DESCRIPTION .DESCRIPTION
This script rolls a dice and returns the number by text-to-speech (TTS). This PowerShell script rolls a dice and returns the number by text-to-speech (TTS).
.EXAMPLE .EXAMPLE
PS> ./roll-a-dice PS> ./roll-a-dice
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
$Reply = "It's", "I get", "Now it's", "OK, I have" | Get-Random $Reply = "It's", "I get", "Now it's", "OK, I have" | Get-Random

View File

@ -2,16 +2,16 @@
.SYNOPSIS .SYNOPSIS
Saves a single screenshot Saves a single screenshot
.DESCRIPTION .DESCRIPTION
This script takes a single screenshot and saves it into a target folder (the user's pictures folder by default). This PowerShell script takes a single screenshot and saves it into a target folder (the user's pictures folder by default).
.PARAMETER TargetFolder .PARAMETER TargetFolder
Specifies the target folder (the user's pictures folder by default) Specifies the target folder (the user's pictures folder by default)
.EXAMPLE .EXAMPLE
PS> ./save-screenshot PS> ./save-screenshot
screenshot saved to C:\Users\Markus\Pictures\2021-10-10T14-33-22.png screenshot saved to C:\Users\Markus\Pictures\2021-10-10T14-33-22.png
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$TargetFolder = "$HOME/Pictures") param([string]$TargetFolder = "$HOME/Pictures")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Scans the network for open/closed ports Scans the network for open/closed ports
.DESCRIPTION .DESCRIPTION
This script scans the network for open or closed ports This PowerShell script scans the network for open or closed ports.
.EXAMPLE .EXAMPLE
PS> ./scan-ports PS> ./scan-ports
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
$network = "192.168.178" $network = "192.168.178"

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Lists all files and folder names matching a search pattern Lists all files and folder names matching a search pattern
.DESCRIPTION .DESCRIPTION
This script serves as a quick Powershell replacement to the search functionality in Windows This PowerShell script serves as a quick Powershell replacement to the search functionality in Windows
After you pass in a root folder and a search term, the script will list all files and folders matching that phrase. After you pass in a root folder and a search term, the script will list all files and folders matching that phrase.
.PARAMETER path .PARAMETER path
Specifies the path Specifies the path
@ -10,10 +10,10 @@
Specifies the search term Specifies the search term
.EXAMPLE .EXAMPLE
PS> ./search-filename PS> ./search-filename
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param( param(

View File

@ -2,17 +2,17 @@
.SYNOPSIS .SYNOPSIS
Searches for a pattern in files Searches for a pattern in files
.DESCRIPTION .DESCRIPTION
This script searches for a pattern in the given files. This PowerShell script searches for a pattern in the given files.
.PARAMETER pattern .PARAMETER pattern
Specifies the search pattern Specifies the search pattern
.PARAMETER files .PARAMETER files
Specifies the files Specifies the files
.EXAMPLE .EXAMPLE
PS> ./search-files UFO C:\Temp\*.txt PS> ./search-files UFO C:\Temp\*.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$pattern = "", [string]$files = "") param([string]$pattern = "", [string]$files = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Answers to 'see you later' Answers to 'see you later'
.DESCRIPTION .DESCRIPTION
This script says a reply to "see you later" by text-to-speech (TTS). This PowerShell script says a reply to "see you later" by text-to-speech (TTS).
.EXAMPLE .EXAMPLE
PS> ./see-you-later PS> ./see-you-later
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
$Reply = "Good bye.", "See you.", "Bye bye." | Get-Random $Reply = "Good bye.", "See you.", "Bye bye." | Get-Random

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Sends an email message Sends an email message
.DESCRIPTION .DESCRIPTION
This script sends an email message. This PowerShell script sends an email message.
.EXAMPLE .EXAMPLE
PS> ./send-email PS> ./send-email
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
$smtpServer = "smtp.example.com" $smtpServer = "smtp.example.com"

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Sends a TCP message to an IP address and port Sends a TCP message to an IP address and port
.DESCRIPTION .DESCRIPTION
This script sends a TCP message to the given IP address and port. This PowerShell script sends a TCP message to the given IP address and port.
.PARAMETER TargetIP .PARAMETER TargetIP
Specifies the target IP address Specifies the target IP address
.PARAMETER TargetPort .PARAMETER TargetPort
@ -11,10 +11,10 @@
Specifies the message to send Specifies the message to send
.EXAMPLE .EXAMPLE
PS> ./send-tcp 192.168.100.100 8080 "TEST" PS> ./send-tcp 192.168.100.100 8080 "TEST"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$TargetIP = "", [int]$TargetPort = 0, [string]$Message = "") param([string]$TargetIP = "", [int]$TargetPort = 0, [string]$Message = "")

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Sends a UDP datagram message to an IP address and port Sends a UDP datagram message to an IP address and port
.DESCRIPTION .DESCRIPTION
This script sends a UDP datagram message to an IP address and port. This PowerShell script sends a UDP datagram message to an IP address and port.
.PARAMETER TargetIP .PARAMETER TargetIP
Specifies the target IP address Specifies the target IP address
.PARAMETER TargetPort .PARAMETER TargetPort
@ -12,10 +12,10 @@
.EXAMPLE .EXAMPLE
PS> ./send-udp 192.168.100.100 8080 "TEST" PS> ./send-udp 192.168.100.100 8080 "TEST"
Done. Done.
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$TargetIP = "", [int]$TargetPort = 0, $[string]Message = "") param([string]$TargetIP = "", [int]$TargetPort = 0, $[string]Message = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Sets the PowerShell profile for the current user Sets the PowerShell profile for the current user
.DESCRIPTION .DESCRIPTION
This script sets the PowerShell profile for the current user. This PowerShell script sets the PowerShell profile for the current user.
.EXAMPLE .EXAMPLE
PS> ./set-profile PS> ./set-profile
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Sets a timer for a countdown Sets a timer for a countdown
.DESCRIPTION .DESCRIPTION
This script sets a timer for a countdown. This PowerShell script sets a timer for a countdown.
.PARAMETER Seconds .PARAMETER Seconds
Specifies the number of seconds Specifies the number of seconds
.EXAMPLE .EXAMPLE
PS> ./set-timer 60 PS> ./set-timer 60
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([int]$Seconds = 0) param([int]$Seconds = 0)

View File

@ -2,17 +2,17 @@
.SYNOPSIS .SYNOPSIS
Sets the given image file as desktop wallpaper Sets the given image file as desktop wallpaper
.DESCRIPTION .DESCRIPTION
Sets the given image file as desktop wallpaper (.JPG or .PNG supported) This PowerShell script sets the given image file as desktop wallpaper (.JPG or .PNG supported)
.PARAMETER ImageFile .PARAMETER ImageFile
Specifies the path to the image file Specifies the path to the image file
.PARAMETER Style .PARAMETER Style
Specifies either Fill, Fit, Stretch, Tile, Center, or Span (default) Specifies either Fill, Fit, Stretch, Tile, Center, or Span (default)
.EXAMPLE .EXAMPLE
PS> ./set-wallpaper C:\ocean.jpg PS> ./set-wallpaper C:\ocean.jpg
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$ImageFile = "", [string]$Style = "Span") param([string]$ImageFile = "", [string]$Style = "Span")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Shows Lightnings in OpenStreetMap Shows Lightnings in OpenStreetMap
.DESCRIPTION .DESCRIPTION
This script launches the Web browser and shows Lightnings in OpenStreetMap. This PowerShell script launches the Web browser and shows lightnings in OpenStreetMap.
.EXAMPLE .EXAMPLE
PS> ./show-lightnings PS> ./show-lightnings
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.lightningmaps.org" & "$PSScriptRoot/open-default-browser.ps1" "https://www.lightningmaps.org"

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Shows the current traffic Shows the current traffic
.DESCRIPTION .DESCRIPTION
This script launches the Web browser with MSN showing the current traffic. This PowerShell script launches the Web browser with MSN showing the current traffic.
.EXAMPLE .EXAMPLE
PS> ./show-traffic PS> ./show-traffic
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.msn.com/en-us/traffic?lvl=11&intent=roadClosures" & "$PSScriptRoot/open-default-browser.ps1" "https://www.msn.com/en-us/traffic?lvl=11&intent=roadClosures"

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Simulates the Matrix (fun) Simulates the Matrix (fun)
.DESCRIPTION .DESCRIPTION
This script simulates the Matrix (for fun). This PowerShell script simulates the Matrix (for fun).
.EXAMPLE .EXAMPLE
PS> ./simulate-matrix PS> ./simulate-matrix
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Simulates the human presence against burglars Simulates the human presence against burglars
.DESCRIPTION .DESCRIPTION
This script simulates the human presence against burglars. This PowerShell script simulates the human presence against burglars.
.PARAMETER IPaddress .PARAMETER IPaddress
Specifies the IP address of the Shelly1 device Specifies the IP address of the Shelly1 device
.EXAMPLE .EXAMPLE
PS> ./simulate-presence 192.168.100.100 PS> ./simulate-presence 192.168.100.100
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,16 +2,16 @@
.SYNOPSIS .SYNOPSIS
Converts the S.M.A.R.T. JSON files in a folder to a CSV table for analysis Converts the S.M.A.R.T. JSON files in a folder to a CSV table for analysis
.DESCRIPTION .DESCRIPTION
Converts the S.M.A.R.T. JSON files in the current/given directory to a CSV table for analysis This PowerShell script converts the S.M.A.R.T. JSON files in the current/given directory
(use query-smart-data.ps1 to generate those JSON files). to a CSV table for analysis (use query-smart-data.ps1 to generate those JSON files).
.PARAMETER Directory .PARAMETER Directory
Specifies the path to the directory Specifies the path to the directory
.EXAMPLE .EXAMPLE
PS> ./smart-data2csv PS> ./smart-data2csv
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$Directory = "") param([string]$Directory = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks a checklist by text-to-speech Speaks a checklist by text-to-speech
.DESCRIPTION .DESCRIPTION
This script speaks the given checklist by text-to-speech (TTS). This PowerShell script speaks the given checklist by text-to-speech (TTS).
.PARAMETER Name .PARAMETER Name
Specifies the name of the checklist Specifies the name of the checklist
.EXAMPLE .EXAMPLE
PS> ./speak-checklist PS> ./speak-checklist
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$Name = "") param([string]$Name = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks a countdown by text-to-speech Speaks a countdown by text-to-speech
.DESCRIPTION .DESCRIPTION
This scripts speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS). This PowerShell script speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS).
.PARAMETER StartNumber .PARAMETER StartNumber
Specifies the number to start from Specifies the number to start from
.EXAMPLE .EXAMPLE
PS> ./speak-countdown 60 PS> ./speak-countdown 60
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([int]$StartNumber = 10) param([int]$StartNumber = 10)

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks text with an English text-to-speech voice Speaks text with an English text-to-speech voice
.DESCRIPTION .DESCRIPTION
This scripts speaks the given text with an English text-to-speech (TTS) voice. This PowerShell scripts speaks the given text with an English text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-english "Hello World" PS> ./speak-english "Hello World"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks the content of the given Epub file by text-to-speech (TTS). Speaks the content of the given Epub file by text-to-speech (TTS).
.DESCRIPTION .DESCRIPTION
This script speaks the content of the given Epub file by text-to-speech (TTS). This PowerShell script speaks the content of the given Epub file by text-to-speech (TTS).
.PARAMETER Filename .PARAMETER Filename
Specifies the path to the Epub file Specifies the path to the Epub file
.EXAMPLE .EXAMPLE
PS> ./speak-epub C:\MyBook.epub PS> ./speak-epub C:\MyBook.epub
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$Filename = "") param([string]$Filename = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks file content by text-to-speech Speaks file content by text-to-speech
.DESCRIPTION .DESCRIPTION
This script speaks the content of the given text file by text-to-speech (TTS). This PowerShell script speaks the content of the given text file by text-to-speech (TTS).
.PARAMETER File .PARAMETER File
Specifies the path to the text file Specifies the path to the text file
.EXAMPLE .EXAMPLE
PS> ./speak-file C:\MyFile.txt PS> ./speak-file C:\MyFile.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$File = "") param([string]$File = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks text with a French text-to-speech voice Speaks text with a French text-to-speech voice
.DESCRIPTION .DESCRIPTION
This script speaks the given text with a French text-to-speech (TTS) voice. This PowerShell script speaks the given text with a French text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-french Salut PS> ./speak-french Salut
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks text with a German text-to-speech voice Speaks text with a German text-to-speech voice
.DESCRIPTION .DESCRIPTION
This script speaks the given text with a German text-to-speech (TTS) voice. This PowerShell script speaks the given text with a German text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-german Hallo PS> ./speak-german Hallo
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks text with an Italian text-to-speech voice Speaks text with an Italian text-to-speech voice
.DESCRIPTION .DESCRIPTION
This script speaks the given text with an Italian text-to-speech (TTS) voice. This PowerShell script speaks the given text with an Italian text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-italian Ciao PS> ./speak-italian Ciao
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks text with a Spanish text-to-speech voice Speaks text with a Spanish text-to-speech voice
.DESCRIPTION .DESCRIPTION
This script speaks the given text with a Spanish text-to-speech (TTS) voice. This PowerShell script speaks the given text with a Spanish text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to speak Specifies the text to speak
.EXAMPLE .EXAMPLE
PS> ./speak-spanish Hola PS> ./speak-spanish Hola
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Performs a text-to-speech test Performs a text-to-speech test
.DESCRIPTION .DESCRIPTION
This script performs a text-to-speech (TTS) test. This PowerShell script performs a text-to-speech (TTS) test.
.EXAMPLE .EXAMPLE
PS> ./speak-test PS> ./speak-test
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
function Speak { param([string]$Text) function Speak { param([string]$Text)

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks text by the default text-to-speech voice Speaks text by the default text-to-speech voice
.DESCRIPTION .DESCRIPTION
This script speaks the given text by the default text-to-speech (TTS) voice. This PowerShell script speaks the given text by the default text-to-speech (TTS) voice.
.PARAMETER text .PARAMETER text
Specifies the text to read Specifies the text to read
.EXAMPLE .EXAMPLE
PS> ./speak-text "Hello World" PS> ./speak-text "Hello World"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Spells a word Spells a word
.DESCRIPTION .DESCRIPTION
This script spells the given word by text-to-speech (TTS). This PowerShell script spells the given word by text-to-speech (TTS).
.PARAMETER word .PARAMETER word
Specifies the word to spell Specifies the word to spell
.EXAMPLE .EXAMPLE
PS> ./spell-word PS> ./spell-word
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$word = "") param([string]$word = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Starts a local Calibre server Starts a local Calibre server
.DESCRIPTION .DESCRIPTION
This script starts a local Calibre server as background process (Web port number is 8099 by default). This PowerShell script starts a local Calibre server as background process (Web port number is 8099 by default).
.PARAMETER port .PARAMETER port
Specifies the Web port number (8099 by default) Specifies the Web port number (8099 by default)
.EXAMPLE .EXAMPLE
PS> ./start-calibre-server PS> ./start-calibre-server
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([int]$port = 8099) param([int]$port = 8099)

View File

@ -5,10 +5,10 @@
This PowerShell script starts a local IPFS server as a daemon process. This PowerShell script starts a local IPFS server as a daemon process.
.EXAMPLE .EXAMPLE
PS> ./start-ipfs-server PS> ./start-ipfs-server
.NOTES
Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,17 +2,17 @@
.SYNOPSIS .SYNOPSIS
Switches the branch in a Git repository Switches the branch in a Git repository
.DESCRIPTION .DESCRIPTION
This script switches to another branch in a Git repository (including submodules). This PowerShell script switches to another branch in a Git repository (including submodules).
.PARAMETER BranchName .PARAMETER BranchName
Specifies the branch name Specifies the branch name
.PARAMETER RepoDir .PARAMETER RepoDir
Specifies the path to the Git repository Specifies the path to the Git repository
.EXAMPLE .EXAMPLE
PS> ./switch-branch main C:\MyRepo PS> ./switch-branch main C:\MyRepo
.NOTES
Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$BranchName = "", [string]$RepoDir = "$PWD") param([string]$BranchName = "", [string]$RepoDir = "$PWD")

View File

@ -1,8 +1,8 @@
<# <#
.SYNOPSIS .SYNOPSIS
Switches a Shelly1 device in the local network Switches a Shelly1 device
.DESCRIPTION .DESCRIPTION
This script switches a Shelly1 device in the local network. This PowerShell script switches a Shelly1 device in the local network.
.PARAMETER Host .PARAMETER Host
Specifies either the hostname or IP address of the Shelly1 device Specifies either the hostname or IP address of the Shelly1 device
.PARAMETER TurnMode .PARAMETER TurnMode
@ -11,10 +11,10 @@
Specifies the timer in seconds (0 = infinite) Specifies the timer in seconds (0 = infinite)
.EXAMPLE .EXAMPLE
PS> ./switch-shelly1 192.168.100.100 toggle 10 PS> ./switch-shelly1 192.168.100.100 toggle 10
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$Host = "", [string]$TurnMode = "", [int]$Timer = -999) param([string]$Host = "", [string]$TurnMode = "", [int]$Timer = -999)

View File

@ -1,16 +1,16 @@
<# <#
.SYNOPSIS .SYNOPSIS
Synchronizes a Git repository by push & pull (including submodules) Synchronizes a Git repository
.DESCRIPTION .DESCRIPTION
This script synchronizes a Git repository by push & pull (including submodules). This PowerShell script synchronizes a Git repository by push & pull (including submodules).
.PARAMETER RepoDir .PARAMETER RepoDir
Specifies the path to the Git repository Specifies the path to the Git repository
.EXAMPLE .EXAMPLE
PS> ./sync-repo C:\MyRepo PS> ./sync-repo C:\MyRepo
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$RepoDir = "$PWD") param([string]$RepoDir = "$PWD")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Tells a joke by text-to-speech Tells a joke by text-to-speech
.DESCRIPTION .DESCRIPTION
This script selects a random Chuck Norris joke in Data/jokes.csv and speaks it by text-to-speech (TTS). This PowerShell script selects a random Chuck Norris joke in Data/jokes.csv and speaks it by text-to-speech (TTS).
.EXAMPLE .EXAMPLE
PS> ./tell-joke PS> ./tell-joke
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Tells a quote by text-to-speech Tells a quote by text-to-speech
.DESCRIPTION .DESCRIPTION
This script selects a random quote in Data/quotes.csv and speaks it by text-to-speech (TTS). This PowerShell script selects a random quote in Data/quotes.csv and speaks it by text-to-speech (TTS).
.EXAMPLE .EXAMPLE
PS> ./tell-quote PS> ./tell-quote
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Translates a text file into another language Translates a text file into another language
.DESCRIPTION .DESCRIPTION
This script translates a text file into another language. This PowerShell script translates a text file into another language.
.PARAMETER File .PARAMETER File
Specifies the file to translate Specifies the file to translate
.PARAMETER SourceLang .PARAMETER SourceLang
@ -11,10 +11,10 @@
Specifies the target language Specifies the target language
.EXAMPLE .EXAMPLE
PS> ./translate-file C:\Memo.txt en de PS> ./translate-file C:\Memo.txt en de
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$File = "", [string]$SourceLang = "", [string]$TargetLang = "") param([string]$File = "", [string]$SourceLang = "", [string]$TargetLang = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Translates text files into any supported language Translates text files into any supported language
.DESCRIPTION .DESCRIPTION
This script translates text files into any supported language. This PowerShell script translates text files into any supported language.
.PARAMETER FilePattern .PARAMETER FilePattern
Specifies the file pattern Specifies the file pattern
.EXAMPLE .EXAMPLE
PS> ./translate-files C:\Temp\*.txt PS> ./translate-files C:\Temp\*.txt
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$FilePattern = "") param([string]$FilePattern = "")

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Translates text into other languages Translates text into other languages
.DESCRIPTION .DESCRIPTION
This script translates text into other languages. This PowerShell script translates text into other languages.
.PARAMETER Text .PARAMETER Text
Specifies the text to translate Specifies the text to translate
.PARAMETER SourceLang .PARAMETER SourceLang
@ -11,10 +11,10 @@
Specifies the target language Specifies the target language
.EXAMPLE .EXAMPLE
PS> ./translate-text "Hello World" de en PS> ./translate-text "Hello World" de en
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$Text = "", [string]$SourceLangCode = "en", [string]$TargetLangCode = "any") param([string]$Text = "", [string]$SourceLangCode = "en", [string]$TargetLangCode = "any")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Turns the audio volume down (-10% by default) Turns the audio volume down (-10% by default)
.DESCRIPTION .DESCRIPTION
This script turns the audio volume down (by -10% by default). This PowerShell script turns the audio volume down (by -10% by default).
.PARAMETER percent .PARAMETER percent
Specifies the percent number Specifies the percent number
.EXAMPLE .EXAMPLE
PS> ./turn-volume-down PS> ./turn-volume-down
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([int]$percent = 10) param([int]$percent = 10)

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Turns the volume off Turns the volume off
.DESCRIPTION .DESCRIPTION
This script mutes the default audio device immediately. This PowerShell script mutes the default audio device immediately.
.EXAMPLE .EXAMPLE
PS> ./turn-volume-off PS> ./turn-volume-off
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Turns the volume on Turns the volume on
.DESCRIPTION .DESCRIPTION
This script unmutes the audio output. This PowerShell script unmutes the audio output.
.EXAMPLE .EXAMPLE
PS> .\turn-volume-on.ps1 PS> .\turn-volume-on
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -1,16 +1,16 @@
<# <#
.SYNOPSIS .SYNOPSIS
Turns the audio volume up (+10% by default) Turns the audio volume up
.DESCRIPTION .DESCRIPTION
This script turns the audio volume up (by +10% by default) This PowerShell script turns the audio volume up (by +10% by default)
.PARAMETER percent .PARAMETER percent
Specifies the percent number Specifies the percent number
.EXAMPLE .EXAMPLE
PS> ./turn-volume-up PS> ./turn-volume-up
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([int]$percent = 10) param([int]$percent = 10)

View File

@ -5,10 +5,10 @@
This PowerShell script upgrades Ubuntu Linux to the latest (LTS) release. This PowerShell script upgrades Ubuntu Linux to the latest (LTS) release.
.EXAMPLE .EXAMPLE
PS> .\upgrade-ubuntu.ps1 PS> .\upgrade-ubuntu.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
try { try {

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Uploads a local file to a FTP server Uploads a local file to a FTP server
.DESCRIPTION .DESCRIPTION
This script uploads a local file to a FTP server. This PowerShell script uploads a local file to a FTP server.
.PARAMETER File .PARAMETER File
Specifies the path to the local file Specifies the path to the local file
.PARAMETER URL .PARAMETER URL
@ -13,10 +13,10 @@
Specifies the password Specifies the password
.EXAMPLE .EXAMPLE
PS> .\upload-file.ps1 PS> .\upload-file.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$File = "", [string]$URL = "", [string]$Username = "", [string]$Password = "") param([string]$File = "", [string]$URL = "", [string]$Username = "", [string]$Password = "")

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Sends a magic packet to a computer to wake him up Sends a magic packet to a computer to wake him up
.DESCRIPTION .DESCRIPTION
Sends a magic UDP packet twice to a computer to wake him up (requires Wake-On-LAN). This PowerShell script sends a magic UDP packet twice to a computer to wake him up (requires Wake-On-LAN).
.PARAMETER MACaddress .PARAMETER MACaddress
Specifies the host's MAC address (e.g. 11:22:33:44:55:66) Specifies the host's MAC address (e.g. 11:22:33:44:55:66)
.PARAMETER IPaddress .PARAMETER IPaddress
@ -12,10 +12,10 @@
.EXAMPLE .EXAMPLE
PS> ./wakeup 11:22:33:44:55:66 192.168.100.100 PS> ./wakeup 11:22:33:44:55:66 192.168.100.100
(PC wakes up) (PC wakes up)
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$MACaddress = "", [string]$IPaddress = "", [int]$Port=9) param([string]$MACaddress = "", [string]$IPaddress = "", [int]$Port=9)

View File

@ -2,21 +2,21 @@
.SYNOPSIS .SYNOPSIS
Lists the local weather report Lists the local weather report
.DESCRIPTION .DESCRIPTION
This script lists the local weather report. This PowerShell script lists the local weather report.
.PARAMETER GeoLocation .PARAMETER GeoLocation
Specifies the geographic location to use (determine automatically by default) Specifies the geographic location to use (determine automatically by default)
.EXAMPLE .EXAMPLE
PS> ./weather-report Paris PS> ./weather-report Paris
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$GeoLocation = "") # empty means determine automatically param([string]$GeoLocation = "") # empty means determine automatically
try { try {
(invoke-webRequest http://v2d.wttr.in/$GeoLocation -userAgent "curl" -useBasicParsing).Content (Invoke-WebRequest http://v2d.wttr.in/$GeoLocation -userAgent "curl" -useBasicParsing).Content
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Lists the current weather forecast Lists the current weather forecast
.DESCRIPTION .DESCRIPTION
This script lists the current weather forecast. This PowerShell script lists the current weather forecast.
.PARAMETER GeoLocation .PARAMETER GeoLocation
Specifies the geographic location to use Specifies the geographic location to use
.EXAMPLE .EXAMPLE
PS> ./weather Paris PS> ./weather Paris
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$GeoLocation = "") # empty means determine automatically param([string]$GeoLocation = "") # empty means determine automatically

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Prints a description of an abbreviation Prints a description of an abbreviation
.DESCRIPTION .DESCRIPTION
This script prints a description of the given abbreviation. This PowerShell script prints a description of the given abbreviation.
.PARAMETER abbreviation .PARAMETER abbreviation
Specifies the appreviation to look for Specifies the appreviation to look for
.EXAMPLE .EXAMPLE
PS> ./what-is IAS PS> ./what-is IAS
.NOTES
Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$abbreviation = "") param([string]$abbreviation = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes animated text Writes animated text
.DESCRIPTION .DESCRIPTION
This script writes animated text. This PowerShell script writes animated text.
.EXAMPLE .EXAMPLE
PS> ./write-animated "Hello World" PS> ./write-animated "Hello World"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param($Line1 = "", $Line2 = "", $Line3 = "", $Line4 = "", $Line5 = "", $Line6 = "", $Line7 = "", $Line8 = "", $Line9 = "", [int]$Speed = 30) # 30 ms pause param($Line1 = "", $Line2 = "", $Line3 = "", $Line4 = "", $Line5 = "", $Line6 = "", $Line7 = "", $Line8 = "", $Line9 = "", [int]$Speed = 30) # 30 ms pause

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Writes text in big letters Writes text in big letters
.DESCRIPTION .DESCRIPTION
This script writes the given text in big letters. This PowerShell script writes the given text in big letters.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-big "Hello World" PS> ./write-big "Hello World"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Writes text in a blue foreground color Writes text in a blue foreground color
.DESCRIPTION .DESCRIPTION
This script writes text in a blue foreground color. This PowerShell script writes text in a blue foreground color.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-blue "Hello World" PS> ./write-blue "Hello World"
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#> #>
param([string]$text = "") param([string]$text = "")

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text in Braille Writes text in Braille
.DESCRIPTION .DESCRIPTION
This script writes text in Braille. This PowerShell script writes text in Braille.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-braille "Hello World" PS> ./write-braille "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -1,8 +1,8 @@
<# <#
.SYNOPSIS .SYNOPSIS
Writes out calendar elements, either a single month or an entire year Writes out a calendar
.DESCRIPTION .DESCRIPTION
write-calendar.ps1 [<Month>] [<Year>] Writes out calendar elements, either a single month or an entire year.
.PARAMETER Month .PARAMETER Month
If specified, will limit output to a single month with this numeral value. If specified, will limit output to a single month with this numeral value.
.PARAMETER Year .PARAMETER Year
@ -20,7 +20,7 @@
PS> ./write-calendar 7 PS> ./write-calendar 7
Outputs the calendar for July of this year. Outputs the calendar for July of this year.
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,11 +2,11 @@
.SYNOPSIS .SYNOPSIS
Writes a chart Writes a chart
.DESCRIPTION .DESCRIPTION
This script writes a chart. This PowerShell script writes a chart.
.EXAMPLE .EXAMPLE
PS> ./write-chart PS> ./write-chart
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text in a green foreground color Writes text in a green foreground color
.DESCRIPTION .DESCRIPTION
This script writes text in a green foreground color. This PowerShell script writes text in a green foreground color.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-green "Hello World" PS> ./write-green "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,12 +2,12 @@
.SYNOPSIS .SYNOPSIS
Writes a random Juck Norris joke to the console Writes a random Juck Norris joke to the console
.DESCRIPTION .DESCRIPTION
This script writes a random Juck Norris joke to the console. This PowerShell script writes a random Juck Norris joke to the console.
.EXAMPLE .EXAMPLE
PS> ./write-joke PS> ./write-joke
When Chuck Norris does division, there are no remainders. 😂 When Chuck Norris does division, there are no remainders. 😂
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text in lowercase letters Writes text in lowercase letters
.DESCRIPTION .DESCRIPTION
This script writes text in lowercase letters. This PowerShell script writes text in lowercase letters.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-lowercase "Hello World" PS> ./write-lowercase "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Writes text as marquee Writes text as marquee
.DESCRIPTION .DESCRIPTION
This script writes text as marquee. This PowerShell script writes text as marquee.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.PARAMETER speed .PARAMETER speed
@ -10,7 +10,7 @@
.EXAMPLE .EXAMPLE
PS> ./write-marquee "Hello World" PS> ./write-marquee "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Writes text in Morse code Writes text in Morse code
.DESCRIPTION .DESCRIPTION
This script writes text in Morse code. This PowerShell script writes text in Morse code.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.PARAMETER speed .PARAMETER speed
@ -10,7 +10,7 @@
.EXAMPLE .EXAMPLE
PS> ./write-morse-code "Hello World" PS> ./write-morse-code "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,11 +2,11 @@
.SYNOPSIS .SYNOPSIS
Writes the message of the day (MOTD) Writes the message of the day (MOTD)
.DESCRIPTION .DESCRIPTION
This script writes the message of the day (MOTD). This PowerShell script writes the message of the day (MOTD).
.EXAMPLE .EXAMPLE
PS> ./write-motd PS> ./write-motd
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,11 +2,11 @@
.SYNOPSIS .SYNOPSIS
Writes a random quote to the console Writes a random quote to the console
.DESCRIPTION .DESCRIPTION
This script writes a random quote to the console. This PowerShell script writes a random quote to the console.
.EXAMPLE .EXAMPLE
PS> ./write-quote PS> ./write-quote
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text in a red foreground color Writes text in a red foreground color
.DESCRIPTION .DESCRIPTION
This script writes text in a red foreground color. This PowerShell script writes text in a red foreground color.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-red "Hello World" PS> ./write-red "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text encoded or decoded with ROT13 Writes text encoded or decoded with ROT13
.DESCRIPTION .DESCRIPTION
This script writes text encoded or decoded with ROT13. This PowerShell script writes text encoded or decoded with ROT13.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-rot13 "Hello World" PS> ./write-rot13 "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Writes text with the typewriter effect Writes text with the typewriter effect
.DESCRIPTION .DESCRIPTION
This script writes text with the typewriter effect. This PowerShell script writes text with the typewriter effect.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.PARAMETER speed .PARAMETER speed
@ -10,7 +10,7 @@
.EXAMPLE .EXAMPLE
PS> ./write-typewriter "Hello World" PS> ./write-typewriter "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text in uppercase letters Writes text in uppercase letters
.DESCRIPTION .DESCRIPTION
This script writes text in uppercase letters. This PowerShell script writes text in uppercase letters.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-uppercase "Hello World" PS> ./write-uppercase "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>

View File

@ -2,13 +2,13 @@
.SYNOPSIS .SYNOPSIS
Writes text in vertical direction Writes text in vertical direction
.DESCRIPTION .DESCRIPTION
This script writes text in vertical direction. This PowerShell script writes text in vertical direction.
.PARAMETER text .PARAMETER text
Specifies the text to write Specifies the text to write
.EXAMPLE .EXAMPLE
PS> ./write-vertical "Hello World" PS> ./write-vertical "Hello World"
.NOTES .NOTES
Author: Markus Fleschutz · License: CC0 Author: Markus Fleschutz / License: CC0
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
#> #>