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 all local computer processes.
PS> ./list-processes.ps1Id CPU(s) ProcessName-- ------ -----------9712 0,39% 64DriverLoad...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all printers known to the local computer.
PS> ./list-printers.ps1Author: Markus Fleschutz | License: CC0
This PowerShell script lists all print jobs of all printer devices.
PS> ./list-print-jobs.ps1Printer Jobs------- ----ET-2810 Series none...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all allowed/recommended verbs in PowerShell.
PS> ./list-powershell-verbs.ps1Verb Group---- -----Add Common...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the installed PowerShell modules.
PS> ./list-powershell-modules.ps1Name Version ModuleType ExportedCommands---- ------- ---------- ----------------Microsoft.PowerShell.Management 3.1.0.0 Manifest {Add-Computer, Add-Content, Checkpoint-Computer...}...Author: 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 details of the installed network interfaces.
PS> ./list-nic.ps1Author: Markus Fleschutz | License: CC0
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 lists all network shares (aka "shared folders") of the local computer.
PS> ./list-network-shares.ps1✅ Shared folder \\LAPTOP\Public -> D:\Public ("Public folder for file transfer")Author: Markus Fleschutz | License: CC0