This PowerShell script fetches all tags in a local Git repository and lists it (oldest tag first).
repoDir Specifies the path to the Git repository (current working directory by default)
searchPattern Specifies the search pattern (anything by default)
PS> ./list-tags.ps1 C:\MyRepoTag Commit Message--- --------------v0.1 Update README.md...Author: Markus Fleschutz | License: CC0
This PowerShell script lists "Did you mean?" suggestions from Google.
text Specifies the word or sentence to get suggestions for.
PS> ./list-suggestions.ps1 Joejoe bidenjoe cocker...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the submodules in the given Git repository.
RepoDir Specifies the path to the repository (current working directory by default)
PS> ./list-submodules.ps1 C:\MyRepoAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists the user's public SSH key.
PS> ./list-ssh-key.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists all special folders (sorted alphabetically).
PS> ./list-special-folders.ps1Folder Name Folder Path----------- -----------AdminTools 📂C:\Users\Markus\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools...Author: Markus Fleschutz | License: CC0
This PowerShell script scans a directory tree and lists all read-only files.
path Specifies the path to the directory tree (current working dir by default)
PS> ./list-read-only-files.ps1 C:\Windows...✅ Found 107 read-only files within 📂C:\Windows in 50 secAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists all pull requests for a Git repository.
RepoDir Specifies the file path to the local Git repository (default is working directory).
PS> ./list-pull-requests.ps1 C:\MyRepoAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists branches in a Git repository matching: (1) search pattern, (2) already merged, (3) older than 2024
pathToRepo Specifies the path to the Git repository (current working directory by default)
PS> ./list-old-branches.ps1 C:\Repos\UFAqOriginal Source: scripts/list-old-branches.ps1
This PowerShell script lists the latest news by using a RSS (Really Simple Syndication) feed.
RSS_URL Specifies the URL to the RSS feed (Yahoo World News by default)
maxLines Specifies the maximum number of lines to list (24 by default)
speed Specifies the speed to write the text (10 ms by default)
PS> ./list-news.ps1UTC HEADLINES (source: https://www.yahoo.com/news/world)--- ---------09:15 Deadly Mediterranean wildfires kill more than 40...Author: Markus Fleschutz | License: CC0
This PowerShell script queries all local IP address information and prints it.
PS> ./list-local-ip.ps1✅ Local Ethernet IP 192.168.178.21/24, 2003:f2:670b:e700:31e5:de86:b7cd:4e45Author: Markus Fleschutz | License: CC0