3
0
3
0
This PowerShell script plays the Mission Impossible theme.
PS> ./play-mission-impossible.ps1(listen and enjoy)Author: Markus Fleschutz | License: CC0
This PowerShell script plays the famous Jingle Bells song.
PS> ./play-jingle-bells.ps1(listen and enjoy)Author: Markus Fleschutz | License: CC0
This PowerShell script plays the Imperial March used in the Star Wars film series.
PS> ./play-imperial-march.ps1(listen and enjoy)Author: Markus Fleschutz | License: CC0
This PowerShell script plays the famous Happy Birthday song.
PS> ./play-happy-birthday.ps1(listen and enjoy)Author: Markus Fleschutz | License: CC0
This PowerShell script plays a short beep sound at 500Hz for 300ms.
PS> ./play-beep-sound.ps1(listen and enjoy)Author: Markus Fleschutz | License: CC0
This PowerShell script measures the ping roundtrip times from the local computer to remote ones (10 Internet servers by default).
hosts Specifies the hosts to ping, seperated by commata (10 Internet servers by default)
PS> ./ping-internet.ps1✅ Internet ping: 12ms (9...18ms range)Author: Markus Fleschutz | License: CC0
This PowerShell script pings the given host.
hostname Specifies the hostname or IP address to ping (x.com by default)
PS> ./ping-host.ps1 x.com✅ 'x.com' is online (20ms to IP 104.244.42.1)Author: Markus Fleschutz | License: CC0
Cherry-picks a Git commit into one or more branches (branch names need to be separated by spaces) NOTE: in case of merge conflicts the script stops immediately!
CommitID Specifies the commit ID
CommitMessage Specifies the commit message to use
Branches Specifies the list of branches, separated by spaces
RepoDir Specifies the path to the Git repository
PS> ./pick-commit 93849f889 "Fix typo" "v1 v2 v3"Author: Markus Fleschutz | License: CC0
This PowerShell script launches a new tab in the default Web browser with the given URL.
URL Specifies the URL
text Specifies the text to write to the console
PS> ./open-URL.ps1 https://cnn.comAuthor: Markus Fleschutz | License: CC0
This PowerShell script creates a new user account with an encrypted home directory.
PS> ./new-user.ps1 Joe✅ Created user account 'Joe' with encrypted home directory in 11s.Author: Markus Fleschutz | License: CC0