This PowerShell script queries alphavantage.co and lists the global price of coffee (monthly, in cents per points).
PS> ./list-coffee-prices.ps1Monthly Global Price of Coffee (by alphavantage.co, in cents per pound)-----------------------------------------------------------------------2024-04-01 ████████████████████████████████████████████████████████████████████▌ 240...Author: Markus Fleschutz | License: CC0
This PowerShell script lists all PowerShell cmdlets.
PS> ./list-cmdlets.ps1CommandType Name Version Source----------- ---- ------- ------Function Add-BCDataCacheExtension 1.0.0.0 BranchCacheFunction Add-BitLockerKeyProtector 1.0.0.0 BitLocker...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the contents of the clipboard.
PS> ./list-clipboard.ps1📋 testAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists installed command-line interface (CLI) tools (sorted alphabetically by name).
PS> ./list-cli-tools.ps1NAME VERSION PATH---- ------- ----arp 10.0.22621.4111 C:\Windows\system32\ARP.EXE (45K)...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the current weather conditions of cities world-wide (west to east).
PS> ./list-city-weather.ps1CITY TEMP RAIN WIND SUN---- ---- ---- ---- ---Hawaii ⛅️ +25°C 0.0mm 69% ↙5km/h 06:49:15 → 17:47:57...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the PowerShell cheat sheet.
PS> ./list-cheat-sheet.ps1Author: Markus Fleschutz | License: CC0
Lists calendar elements, either a single month or an entire year.
Month If specified, will limit output to a single month with this numeral value.
Year If specified, will output an entire year.
PS> ./list-calendarLists the calendar for current month.PS> ./list-calendar 2013Lists the calendar for 2013.PS> ./list-calendar 04 2011Lists the calendar for April, 2011.PS> ./list-calendar 7Lists the calendar for July of this year.Author: Markus Fleschutz | License: CC0
This PowerShell script lists branches in a Git repository - either all (default) or by a search pattern.
pathToRepo Specifies the path to the Git repository (current working directory by default)
searchPattern Specifies the search pattern ("*", anything by default)
PS> ./list-branches.ps1List of Git Branches--------------------mainAuthor: Markus Fleschutz | License: CC0
This PowerShell script lists all Bluetooth devices connected to the local computer.
PS> ./list-bluetooth-devices.ps1FriendlyName Status InstanceId------------ ------ ----------G3 Headset OK BTHENUM\DEV_FC58FA7A51C6\8&152049BE&0&BLUETOOTHDEVICE_FC58FA7A51C6...Author: Markus Fleschutz | License: CC0
This PowerShell script lists the BIOS details.
PS> ./list-bios.ps1SMBIOSBIOSVersion : F6Manufacturer : American Megatrends Inc....Author: Markus Fleschutz | License: CC0